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 }); }
What is the mean of Intranet here: "group of computer share information between student and faculty"
This
web application is developed to provide the facilities to various users. In
this developed application there are three main users, which have the different
privileges. These users can perform the various operations through this
application.
Ø
Administrator
Administer can add
new faculty.
Administer can add
new faculty member.
Administer
can provide username and password to faculty member to change their accounts.
Administer can delete
the existing faculty account.
Administer can edit
the existing faculty account.
Administer can chat
with other faculty members.
Ø
ØFaculty
Faculty can edit its
account.
Faculty can upload
the documents to give the students.
Faculty can chat with
administer or other faculty member.
Faculty can view
their profile.
ØUser
User can view the
particular faculty member profile.
User can view the
particular faculty member list.
User can download the
files from the respective faulty member’s profile.
Comments
Post a Comment