No Description

ICommandeRepository.cs 193B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Backend.Data.Interfaces
  5. {
  6. public interface ICommandeRepository : IGenericRepository<Commande>
  7. {
  8. }
  9. }

Powered by TurnKey Linux.