ICustomerRepository.cs 574 B

12345678910111213141516171819202122
  1. // ======================================
  2. // Author: Ebenezer Monney
  3. // Email: info@ebenmonney.com
  4. // Copyright (c) 2017 www.ebenmonney.com
  5. //
  6. // ==> Gun4Hire: contact@ebenmonney.com
  7. // ======================================
  8. using DAL.Models;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. namespace DAL.Repositories.Interfaces
  13. {
  14. public interface ICustomerRepository : IRepository<Customer>
  15. {
  16. IEnumerable<Customer> GetTopActiveCustomers(int count);
  17. IEnumerable<Customer> GetAllCustomersData();
  18. }
  19. }