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