Esempio n. 1
0
 public AccountController(EnhancedApplicationUserManager userManager,
                          IOwinContextAccessor owinContext,
                          IChaufferDbContext _context)
 {
     UserManager  = userManager;
     _owinContext = owinContext;
     context      = _context;
 }
Esempio n. 2
0
 public BookingsController
 (
     IChaufferDbContext context,
     ICreateBookingCommand createBookingCommand,
     IEditBookingCommand editBookingCommand,
     ICreateStopCommand createStopCommand
 )
 {
     this.context = context;
     this.createBookingCommand = createBookingCommand;
     this.editBookingCommand   = editBookingCommand;
     this.createStopCommand    = createStopCommand;
 }
Esempio n. 3
0
 public CancelBookingCommand(IChaufferDbContext context)
 {
     this.context = context;
 }
Esempio n. 4
0
 public CreateStopCommand(IChaufferDbContext context)
 {
     this.context = context;
 }
Esempio n. 5
0
 public CreateDriverCommand(IChaufferDbContext context)
 {
     this.context = context;
 }
Esempio n. 6
0
 public CreateCustomerCommand(IChaufferDbContext context)
 {
     this.context = context;
 }
Esempio n. 7
0
 public EditBookingCommand(IChaufferDbContext context)
 {
     this.context = context;
 }
Esempio n. 8
0
 public EditDriverCommand(IChaufferDbContext context)
 {
     this.context = context;
 }
 public CustomersController(ICreateCustomerCommand createCustomerCommand, IChaufferDbContext context)
 {
     this.context = context;
     this.createCustomerCommand = createCustomerCommand;
 }
 public CreateBookingCommand(IChaufferDbContext context)
 {
     this.context = context;
 }