public AttributesController(DoubleBatteryDbContext context)
 {
     this.context = context;
 }
Пример #2
0
 public ModelsController(IMapper mapper, DoubleBatteryDbContext context)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public BrandsController(DoubleBatteryDbContext context, IMapper mapper)
 {
     this.mapper  = mapper;
     this.Context = context;
 }