Exemplo n.º 1
0
 public EditSubTaskModel(CarService.Dal.CarServiceDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public DeleteCarModel(CarService.Dal.CarServiceDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ReallyStartModel(CarService.Dal.CarServiceDbContext context, IEmailSender emailSender)
 {
     _workSheetLogic = new WorkSheetLogic(context);
     _emailLogic     = new EmailLogic(context, emailSender);
     _userLogic      = new UserLogic(context);
 }
Exemplo n.º 4
0
 public DetailsCarModel(CarService.Dal.CarServiceDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public ModifyPriceModel(CarService.Dal.CarServiceDbContext context)
 {
     _workSheetLogic = new WorkSheetLogic(context);
 }