This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
I. Получение пользователей, у которых есть роль | |
*/ | |
//a) | |
public List<Users> GetUsersByRole(int pageNumber, int pageSize, string role) | |
{ | |
if (pageSize <= 0 || pageNumber <= 0) | |
throw new ArgumentOutOfRangeException(); | |
using (var context = new MyContext()) |