public TypeHardWareConfigController(IConfiguration config, ITypeService ts, ITypeDataDefineService tds, ITypeHardwareConfigService ths)
 {
     this._config = config;
     this._ts     = ts;
     this._tds    = tds;
     this._ths    = ths;
 }
Exemple #2
0
 public DeviceService(ILogger <DeviceService> log, IMapper mapper, IDeviceRepository dr, IProjectService ps, ITypeHardwareConfigService th, ITypeRepository tr)
 {
     this._log    = log;
     this._mapper = mapper;
     this._dr     = dr;
     this._ps     = ps;
     this._th     = th;
     this._tr     = tr;
 }