protected ApiControllerBase(IConfiguration config, IRepository repo, IStoredProcs sp)
 {
     _repo       = repo;
     _sp         = sp;
     _appVersion = config.GetSection("AppVersion").Value;
 }
Exemplo n.º 2
0
 public LogController(IConfiguration config, IRepository repo, IStoredProcs sp)
     : base(config, repo, sp)
 {
     _sp = sp;
 }
Exemplo n.º 3
0
 public HuntController(IConfiguration config, IRepository repo, IStoredProcs sp) : base(config, repo, sp)
 {
     _repo = repo;
     _sp   = sp;
 }