using Domain.Entities; using Domain.Generics; namespace Models.Interfaces { public interface IPhSQuoteRoleRepository { Task AddAsync(EQuoteRole quoteRole); Task DeleteAsync(int id); Task> GetAllAsync(int page = 1, int pageSize = 50); Task GetByIdAsync(int id); Task UpdateAsync(EQuoteRole quoteRole); } }