You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IUsersRepository.cs 337B

1234567891011
  1. using BlackRock.Reporting.API.Core.Models;
  2. using BlackRock.Reporting.API.Core.Models;
  3. namespace BlackRock.Reporting.API.Core
  4. {
  5. public interface IUsersRepository : IRepository<User>
  6. {
  7. void UpdateEmail(User user,string email);
  8. Task<PaggingCollection<User>> GetAllByFilter(UserPaggingAndFiltering queryObj);
  9. }
  10. }