public UnitPaymentPriceCorrectionNoteReportController(IServiceProvider serviceProvider, IMapper mapper, IUnitPaymentPriceCorrectionNoteFacade facade)
 {
     this.serviceProvider = serviceProvider;
     _mapper         = mapper;
     _facade         = facade;
     identityService = (IdentityService)serviceProvider.GetService(typeof(IdentityService));
 }
 public UnitPaymentCorrectionNoteGenerateDataController(IMapper mapper, IUnitPaymentPriceCorrectionNoteFacade facade, IdentityService identityService)
 {
     _mapper = mapper;
     _facade = facade;
     this.identityService = identityService;
 }