Ejemplo n.º 1
0
 public DBBackUpController(DataContext dataContext, IConfiguration configuration, IBOUser bOUser, IBODriver bODriver, IBOBackup bOBackup, IHostingEnvironment environment)
 {
     _dbContext     = dataContext;
     _configuration = configuration;
     _bOUser        = bOUser;
     _bODriver      = bODriver;
     _bOBackup      = bOBackup;
     _environment   = environment;
 }
 public NotificationsController(DataContext dataContext, IConfiguration configuration, IBODriver bODriver, IBOUser bOUser, IBONotification bONotification, IHostingEnvironment environment)
 {
     _dbContext      = dataContext;
     _configuration  = configuration;
     _bONotification = bONotification;
     _environment    = environment;
     _bODriver       = bODriver;
     _bOUser         = bOUser;
 }
Ejemplo n.º 3
0
 public RideController(DataContext dataContext, IConfiguration configuration, IBODriver bODriver, IBOUser bOUser, IBORide bORide, IHostingEnvironment environment)
 {
     _dbContext     = dataContext;
     _configuration = configuration;
     _bORide        = bORide;
     _environment   = environment;
     _bODriver      = bODriver;
 }