Нет описания

12345678910111213
  1. 
  2. using Backend.ApplicationCore.Interfaces.IRepositories;
  3. using Backend.Domain.Entities;
  4. namespace Backend.Infrastructure.Repositories
  5. {
  6. public class CommandeRepository : GenericRepository<Commande>, ICommandeRepository
  7. {
  8. public CommandeRepository(IApplicationDatabaseContext context) : base(context)
  9. {
  10. }
  11. }
  12. }

Powered by TurnKey Linux.