示例#1
0
 public BaseController(IAnomalyService anomalyService, IRefTablesService refTablesService)
 {
     _anomalyService   = anomalyService;
     _refTablesService = refTablesService;
 }
示例#2
0
 public AnomalyController(IAnomalyService anomalyService, IMapper mapper)
 {
     _anomalyService = anomalyService;
     _mapper         = mapper;
 }
示例#3
0
 public HomeController(IAnomalyService anomalyService)
 {
     _anomalyService = anomalyService;
 }
示例#4
0
 public PMController(IAnomalyService anomalyService, IRefTablesService refTablesService) : base(anomalyService, refTablesService)
 {
     _pmControllerBusiness = new PMControllerBusiness(_anomalyService, _refTablesService);
 }
示例#5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AnomalyController"/> class.
 /// </summary>
 public AnomalyController()
 {
     this.anomalyService = new AnomalyService();
 }
示例#6
0
 public PMControllerBusiness(IAnomalyService anomalyService, IRefTablesService refTablesService)
 {
     _refTablesService = refTablesService;
     _anomalyService   = anomalyService;
 }