public CarProductServiceController(CarProductServiceContext context)
 {
     _context = context;
     _logic   = new CarMakerLogic(context);
 }
Esempio n. 2
0
 public CarMakerLangLogic(CarProductServiceContext context)
 {
     _context = context;
 }
 public CarProductLogic(CarProductServiceContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public CarSalesYearLogic(CarProductServiceContext context)
 {
     _context = context;
 }