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 }); }
‘C’ function to implement ‘selection sort’ in ascending order.
void se1_sort_ao(int arr[],int n)
{
int i, j, min, mpos;
for(i=0;i<n-1;i++)
{
min = arr[i]; mpos = i;
for(j=i+1;j<n;j++) /*selection of min element */
if(arr[j] < min)
{
min = arr[j]; mpos =j;
}
arr[mpos] = arr[i]; /*replacing min element */
arr[i] = min;
}
}
‘C’ function to implement ‘selection sort’ in descending order.
void se1_sort_ao(int arr[],int n){
int i, j, max, mpos;
for(i=0;i<n-1;i++)
{
max = arr[i]; mpos = i;
for(j=i+1;j<n;j++) /*selection of max element */
if(arr[j] > max)
{
max = arr[j]; mpos =j;
}
arr[mpos] = arr[i]; /*replacing max element */
arr[i] = max;
}
}
Comments
Post a Comment