public ItemService(ExchaggleDbContext databaseContext)
 {
     db           = databaseContext;
     global       = new GlobalService(db);
     imaging      = new ImageService(db);
     tradeManager = new TradeService(db);
 }
Esempio n. 2
0
 public SettingsController()
 {
     dataContext     = new ExchaggleDbContext();
     settingsManager = new SettingService(dataContext);
     global          = new GlobalService(dataContext);
     adminManager    = new AdminService(dataContext);
 }
 public ItemsController()
 {
     dataContext   = new ExchaggleDbContext();
     uploadManager = new UploadService(dataContext);
     itemManager   = new ItemService(dataContext);
     global        = new GlobalService(dataContext);
 }
 public AjaxController()
 {
     dataContext      = new ExchaggleDbContext();
     global           = new GlobalService(dataContext);
     dashboardManager = new DashboardService(dataContext);
     searchManager    = new SearchService(dataContext);
     reportManager    = new ReportService(dataContext);
 }
 public ImageService(ExchaggleDbContext databaseContext)
 {
     db         = databaseContext;
     imageTypes = new List <string>()
     {
         "image/gif",
         "image/jpeg",
         "image/pjpeg",
         "image/png"
     };
 }
 public SettingService(ExchaggleDbContext databaseContext)
 {
     db           = databaseContext;
     global       = new GlobalService(db);
     tradeManager = new TradeService(db);
 }
 public UploadService(ExchaggleDbContext databaseContext)
 {
     db      = databaseContext;
     global  = new GlobalService(db);
     imaging = new ImageService(db);
 }
Esempio n. 8
0
 public ReportController()
 {
     dataContext = new ExchaggleDbContext();
     reporting   = new ReportService(dataContext);
 }
 public SearchController()
 {
     dataContext       = new ExchaggleDbContext();
     searchFormManager = new SearchService(dataContext);
     global            = new GlobalService(dataContext);
 }
Esempio n. 10
0
 public GlobalService(ExchaggleDbContext databaseContext)
 {
     db      = databaseContext;
     imaging = new ImageService(db);
 }
Esempio n. 11
0
 public AccountService(ExchaggleDbContext databaseContext)
 {
     db           = databaseContext;
     global       = new GlobalService(db);
     tradeChecker = new TradeService(db);
 }
Esempio n. 12
0
 public DashboardService(ExchaggleDbContext databaseContext)
 {
     db     = databaseContext;
     global = new GlobalService(db);
 }
Esempio n. 13
0
 public AdminService(ExchaggleDbContext databaseContext)
 {
     db     = databaseContext;
     global = new GlobalService(db);
 }
Esempio n. 14
0
 public TradesController()
 {
     dataContext  = new ExchaggleDbContext();
     tradeManager = new TradeService(dataContext);
     global       = new GlobalService(dataContext);
 }