Beispiel #1
0
 public TmStartup(ICommonInfrastructure infr,
                  ICfsApi cfsApi,
                  IHostApplicationLifetime applicationLifetime)
 {
     _infr   = infr;
     _cfsApi = cfsApi;
     _applicationLifetime = applicationLifetime;
 }
Beispiel #2
0
 public TmStartup(ICommonInfrastructure infr)
 {
     _infr = infr;
 }
Beispiel #3
0
 public Worker(ICommonInfrastructure infr,
               IOikDataApi api)
 {
     _infr = infr;
     _api  = api;
 }
 public UserController(ICommonInfrastructure infr)
 {
     _infr = infr;
 }
 public TmTelecontrolService(ICommonInfrastructure infr,
                             IOikDataApi api)
 {
     _api  = api;
     _infr = infr;
 }