Beispiel #1
0
 public ReportDiscardDraftController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
 public ReportLinkToWebsiteController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
Beispiel #3
0
 public ReportSizeOfOrganisationController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
 public ReportHourlyPayController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
Beispiel #5
0
 public ReportResponsiblePersonController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
Beispiel #6
0
 public ReportFiguresController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
 public ReportEmployeesByPayQuartileController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
 }
 public ReportReviewAndSubmitController(
     IDataRepository dataRepository,
     ReturnService returnService,
     DraftReturnService draftReturnService)
 {
     this.dataRepository     = dataRepository;
     this.returnService      = returnService;
     this.draftReturnService = draftReturnService;
 }
Beispiel #9
0
 public ReportOverviewController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService,
     ReturnService returnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
     this.returnService      = returnService;
 }
 public LateSubmissionController(
     IDataRepository dataRepository,
     DraftReturnService draftReturnService,
     ReturnService returnService)
 {
     this.dataRepository     = dataRepository;
     this.draftReturnService = draftReturnService;
     this.returnService      = returnService;
 }