public HighchartTerminals(QDatabaseEntities db, string name, int year, int month, bool isUseYearOnly, int terminalsCount, bool isCircle)
 {
     this.db = db;
     this.name = name;
     this.year = year;
     this.month = month;
     this.isUseYearOnly = isUseYearOnly;
     this.terminalsCount = terminalsCount;
     this.isCircle = isCircle;
 }
Esempio n. 2
0
 public HighchartCashTime(QDatabaseEntities db, string name)
 {
     this.db = db;
     this.name = name;
 }
Esempio n. 3
0
 public Index(QDatabaseEntities db)
 {
     this.db = db;
 }
Esempio n. 4
0
 public HighchartInOut(QDatabaseEntities db, string name, int monthCount)
 {
     this.db = db;
     this.name = name;
     this.monthCount = monthCount;
 }