using DTO; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTOToEntity { public interface IUserService : IService { Task> GetByGroup(int index, int count, long group); Task> GetByRole(int index, int count, string role); } }