Esempio n. 1
0
        public static List <EmployeeUsersDetails> GetEmployeesExceptAdmin(int page)
        {
            int takeCount = Config.PageItemCount();
            int skipCount = page * takeCount;

            return(EmployeesRepositories.GetEmployeesExceptAdmin(skipCount, takeCount));
        }
Esempio n. 2
0
 public static List <UserData> GetEmployeesExceptAdmin()
 {
     return(EmployeesRepositories.GetEmployeesExceptAdmin());
 }