public TwitterController(AreaContext db) { _db = db; }
public WidgetConfBusinessLogic(AreaContext context) { _widgetConfRepository = new WidgetConfRepository(context); }
public WidgetParamController(AreaContext context) { _widgetParamBusiness = new WidgetParamBusinessLogic(context); }
public UserController(AreaContext context, IOptions <AppSettings> appSettings) { _business = new UserBusinessLogic(context, appSettings); }
public ServiceRepository(AreaContext context) { _context = context; }
public BaseController() { db = new AreaContext(); }
public AboutBusinessLogic(AreaContext context) { _serviceRepository = new ServiceRepository(context); _widgetRepository = new WidgetRepository(context); _widgetParamRepository = new WidgetParamRepository(context); }
public WidgetController(AreaContext context, IOptions <AppSettings> appSettings) { _widgetBusiness = new WidgetBusinessLogic(context); _userBusiness = new UserBusinessLogic(context, appSettings); }
public UserBusinessLogic(AreaContext context, IOptions <AppSettings> appSettings) { _appSettings = appSettings.Value; _repository = new UserRepository(context); }
public AreaRepository(AreaContext db) { _db = db; }
public FacebookController(AreaContext db) { _db = db; }
public UserRepository(AreaContext context) { _context = context; }
public ProviderRepository(AreaContext context) { _context = context; }