public RefundSupportTicketController(ILogger <RefundSupportTicketController> logger,
                                      IRefundSupportTicketRepository repository,
                                      IMapper mapper)
 {
     _logger     = logger;
     _repository = repository;
     _mapper     = mapper;
 }
Exemple #2
0
 public ServiceOutageSummaryRepository(
     IRepository <ServiceOutageSummary> repository,
     IServiceSlaService serviceSlaService,
     IRefundSupportTicketRepository refundSupportTicketRepository,
     ReportContext context,
     ILogger <ServiceOutageSummaryRepository> logger,
     IApiIdentity apiIdentity) : base(context, apiIdentity)
 {
     _repository                    = repository;
     _serviceSlaService             = serviceSlaService;
     _refundSupportTicketRepository = refundSupportTicketRepository;
     _context = context;
     _logger  = logger;
 }
Exemple #3
0
 public ServiceOutageSummaryService(
     IServiceSlaService serviceSlaService,
     IServiceOutageRepository serviceOutageRepository,
     IRefundSupportTicketRepository refundSupportTicketRepository,
     ISupportedRegionsService supportedRegionsService,
     IServiceOutageSummaryRepository serviceOutageSummaryRepository,
     IAzureHealthService azureHealthService,
     IAzureHealthSPNService azureHealthSPNService,
     IApiIdentity apiIdentity
     )
 {
     _serviceSlaService              = serviceSlaService;
     _serviceOutageRepository        = serviceOutageRepository;
     _refundSupportTicketRepository  = refundSupportTicketRepository;
     _supportedRegionsService        = supportedRegionsService;
     _serviceOutageSummaryRepository = serviceOutageSummaryRepository;
     _azureHealthService             = azureHealthService;
     _azureHealthSPNService          = azureHealthSPNService;
 }