public DealerController(OyoLifeContext context)
 {
     _context = context;
 }
 public BookingsController(OyoLifeContext context)
 {
     _context = context;
 }
 public PgFacilityRepository(OyoLifeContext oyoLifeContext)
 {
     _context = oyoLifeContext;
 }
Exemple #4
0
 public UsersController(OyoLifeContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
Exemple #5
0
 public AdminController(OyoLifeContext context)
 {
     _context = context;
 }
Exemple #6
0
 public PGsController(OyoLifeContext context, IPgImagesRepository IPgImagesRepository, IPgFacilityRepository IPgFacilityRepository)
 {
     _context               = context;
     _IPgImagesRepository   = IPgImagesRepository;
     _IPgFacilityRepository = IPgFacilityRepository;
 }
Exemple #7
0
 public PgImagesRepository(OyoLifeContext oyoLifeContext)
 {
     _context = oyoLifeContext;
 }