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
This project is related to school management system. In this project we have a Sql Database to store student information also store their fees details. The main motive behind the project is to persist the student information in single place. So,we can retrieve that information easily and quickly.
Front-end and Back-end:
Front-end : Windows form with c# as business logic
Back-end : SQL Server 2014
How to run this:
How to design the system
This project is related to school management system. In this project we have a Sql Database to store student information also store their fees details. The main motive behind the project is to persist the student information in single place. So,we can retrieve that information easily and quickly.
Front-end and Back-end:
Front-end : Windows form with c# as business logic
Back-end : SQL Server 2014
How to run this:
How to design the system
- First to add new windows form in the solution.
- Add some control in the form.
- Now, add business logic in the code file.
Module in the project
- Add new Student: Through this module we can add student details like : Student name, Student father name , Student mother name, Student address etc.
- Edit Details : You can edit details of student by their enrollment id.
- Search Student details : You can search stored student details by student name. In this project we can add auto complete type functionality.
- Delete Student Details
How to Download : Mail me : narenkumar851@gmail.com
Comments
Post a Comment