public IActionResult Employees(int pageNumber)
        {
            OrganizationViewModel orgViewModel = CurrentOrganization;
            User currentUser = context.Users.FirstOrDefault(n => n.UserName == User.Identity.Name);
            OrganizationRepository organizationRepository = new OrganizationRepository(context, viewsInfo, resManager, HttpContext);

            organizationRepository.SetViewInfo(currentUser.Id, EMPLOYEES, pageNumber);
            organizationRepository.AttachEmployees(orgViewModel);
            return(View($"{ORG_VIEWS_REL_PATH}{ORGANIZATION}.cshtml", orgViewModel));
        }