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