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 }); }
Introduction
The blood bank system provides some information about blood bank. A needy person can take some points of blood with their blood groups. By using this system, we provides the information about donor and takers. These all information are public. Any one person register in the control panel and after successfully register in the panel. He/She can login in the system. We have a form for donor, in this form, donor fill these mentioned fields.
Donor Id : Int type
Name : nvarchar (100)
Blood Group : nvarchar ( 50)
Contact ( Phone Number) : nvarchar (50)
Address : nvarchar(max)
After filling the form, information display on home screen, registered user can see donor information. Project also provide the search facility, through it, registered user can see donor information, according to blood group. It provide the total storage of blood in the bank. Bank takes blood from outer side also vice versa. Total in and out details stored in separate database table.
Software information : Visual Studio 2013
Hardware requirement : Visual Studio 2013 compatible hardware.
Video : Comming Soon
How to run it: You can run it using video help.
Download/Buy : mail me narenkumar851@gmail.com
Software information : Visual Studio 2013
Hardware requirement : Visual Studio 2013 compatible hardware.
Video : Comming Soon
How to run it: You can run it using video help.
Download/Buy : mail me narenkumar851@gmail.com
Comments
Post a Comment