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 ClaimGetStateService(IClaimStateRepository claimStateRepository)
 {
     this.claimStateRepository = claimStateRepository;
 }