예제 #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;
 }
예제 #2
0
 public WarnTypeService(ILogger <WarnTypeService> log, IMapper mapper, IWarnTypeRepository warnType)
 {
     this._log      = log;
     this._mapper   = mapper;
     this._warnType = warnType;
 }