I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component public class AllViewComponent : ViewComponent { private readonly UserManager<ApplicationUser> _userManager; public AllViewComponent(UserManager<ApplicationUser> userManager) { _userManager = userManager; } public async Task<IViewComponentResult> InvokeAsync() { List<StudentViewModel> allUsers = new List<StudentViewModel>(); var items = await _userManager.Users.ToListAsync(); foreach (var item in items) { allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email }); }
Finally, i decide to make a project in ASP.NET CORE. In last 30 days to try to build Online Movie Ticket booking system Project in ASP.NET Core. Finally, I build it. In this Project, I am taking two user , one is admin and another one is Visitor (who book the ticket). You can check the functionality of the project by video:
You can Buy this project Easily with minimum price. I resolve all bugs via team viewer. Just mail me to Buy it:
mail : narenkumar851@gmail.com
Security of the project:
1. Authentication is based identity management which is provided by Microsoft.2. Without Authenticate you can not book the ticket.
3. Anti-Forgery Token generated.
4. Policy based Claimed also mentioned.
Comments
Post a Comment