public TravelWarrantService(SEVPNContext context)
 {
     this.context = context;
 }
Пример #2
0
 public CarsService(SEVPNContext context)
 {
     this.context = context;
 }
 public TravelWarrantsController(ITravelWarrantService travelWarrantService, SEVPNContext context)
 {
     this.travelWarrantService = travelWarrantService;
     this.context = context;
 }