IOrdersRepository.cs 452 B

123456789101112131415161718192021
  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 IOrdersRepository : IRepository<Order>
  15. {
  16. }
  17. }