| 12345678910111213141516171819202122 |
- // ======================================
- // Author: Ebenezer Monney
- // Email: info@ebenmonney.com
- // Copyright (c) 2017 www.ebenmonney.com
- //
- // ==> Gun4Hire: contact@ebenmonney.com
- // ======================================
- using DAL.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace DAL.Repositories.Interfaces
- {
- public interface ICustomerRepository : IRepository<Customer>
- {
- IEnumerable<Customer> GetTopActiveCustomers(int count);
- IEnumerable<Customer> GetAllCustomersData();
- }
- }
|