Esempio n. 1
0
 public RegressionTypesController(IGageStatsAgent sa, ISharedAgent shared_sa) : base(shared_sa)
 {
     this.agent = sa;
 }
 public UnitsController(IGageStatsAgent sa, ISharedAgent shared_sa) : base(shared_sa)
 {
     this.agent = sa;
 }
 public RegionsController(IGageStatsAgent sa, ISharedAgent shared_sa) : base(shared_sa)
 {
     this.agent  = sa;
     this.shared = shared_sa;
 }
Esempio n. 4
0
 public StatisticGroupsController(IGageStatsAgent sa, ISharedAgent shared_sa) : base(shared_sa)
 {
     this.agent = sa;
 }
Esempio n. 5
0
 public ManagersController(IGageStatsAgent sa, ISharedAgent shared_sa, IOptions <JwtBearerSettings> jwtsettings) :
     base(sa, jwtsettings.Value.SecretKey)
 {
     this.agent  = sa;
     this.shared = shared_sa;
 }