Exemplo n.º 1
0
 public RegressionTypesController(IGageStatsAgent sa, ISharedAgent shared_sa) : base(shared_sa)
 {
     this.agent = sa;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 4
0
 public StatisticGroupsController(IGageStatsAgent sa, ISharedAgent shared_sa) : base(shared_sa)
 {
     this.agent = sa;
 }
Exemplo 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;
 }