// ====================================== // 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 { IEnumerable GetTopActiveCustomers(int count); IEnumerable GetAllCustomersData(); } }