Exemplo n.º 1
0
 public WarnService(ILogger <WarnService> log, IMapper mapper, IWarnRepository warn, IWarnTypeRepository wt)
 {
     this._log    = log;
     this._mapper = mapper;
     this._warn   = warn;
     this._wt     = wt;
 }
Exemplo n.º 2
0
 public WarnTypeService(ILogger <WarnTypeService> log, IMapper mapper, IWarnTypeRepository warnType)
 {
     this._log      = log;
     this._mapper   = mapper;
     this._warnType = warnType;
 }