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 }); }
An airline reservation system (ARS) is part of the so-called passenger service systems (PSS), which are applications supporting the direct contact with the passenger. ARS eventually evolved into the computerreservations system (CRS).( 1 ) When you have a ticket then you can check the details of the flight. In it we have many contents like passenger name, flight name , flight number, seat number, class of flight like 1st class, 2nd class etc. I created a project on the basis of this concept. This is GUI based Java Project. By using this project , you can book passenger ticket at a time. If you want to check the module and functionality of the project then you can see this video. If you want to purchase this project must to contact on email : narenkumar851@gmail.com