Пример #1
0
 public VariableSetService(
     ILogger <IVariableSetRepository> logger,
     IVariableSetRepository variableSetRepository,
     IApiVariableSetRequestModelValidator variableSetModelValidator,
     IBOLVariableSetMapper bolvariableSetMapper,
     IDALVariableSetMapper dalvariableSetMapper
     )
     : base(logger,
            variableSetRepository,
            variableSetModelValidator,
            bolvariableSetMapper,
            dalvariableSetMapper)
 {
 }
 public AbstractVariableSetService(
     ILogger logger,
     IVariableSetRepository variableSetRepository,
     IApiVariableSetRequestModelValidator variableSetModelValidator,
     IBOLVariableSetMapper bolVariableSetMapper,
     IDALVariableSetMapper dalVariableSetMapper)
     : base()
 {
     this.variableSetRepository     = variableSetRepository;
     this.variableSetModelValidator = variableSetModelValidator;
     this.bolVariableSetMapper      = bolVariableSetMapper;
     this.dalVariableSetMapper      = dalVariableSetMapper;
     this.logger = logger;
 }