public EquipmentRepository(IMapper mapper, BondoraDataContext context)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public CustomerRepository(BondoraDataContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Пример #3
0
 public BasketRepository(IMapper mapper, BondoraDataContext context)
 {
     this.mapper  = mapper;
     this.context = context;
 }