public ChangeClaimStateService(
     IClaimStateFactory claimStateFactory,
     IClaimRepository claimRepository,
     IClaimStateRepository stateRepository,
     IClaimWorkflowService claimWorkflowService,
     IGetClaimService getClaimService,
     IEmailSender emailSender)
 {
     this.claimStateFactory    = claimStateFactory;
     this.claimRepository      = claimRepository;
     this.stateRepository      = stateRepository;
     this.claimWorkflowService = claimWorkflowService;
     this.getClaimService      = getClaimService;
     this.emailSender          = emailSender;
 }
 public NewClaimService(IClaimRepository claimRepository, IClaimWorkflowService claimWorkflowService)
 {
     this.claimRepository      = claimRepository;
     this.claimWorkflowService = claimWorkflowService;
 }
Beispiel #3
0
 public WorkflowController(IClaimWorkflowService claimWorkflowService)
 {
     this.claimWorkflowService = claimWorkflowService;
 }