public CreditRequestService(
     ICreditUow creditUow, 
     INotificationService notificationService,
     IAttachmentService attachmentService)
 {
     this.creditUow = creditUow;
     this.notificationService = notificationService;
     this.attachmentService = attachmentService;
 }
 public CreditTypeService(ICreditUow creditUow)
 {
     this.creditUow = creditUow;
 }
 public SettingsService(ICreditUow creditUow)
 {
     this.creditUow = creditUow;
 }
 public IndividualClientsService(ICreditUow creditUow, ICurrentUser currentUser)
 {
     this.creditUow = creditUow;
     this.currentUser = currentUser;
 }
 public JuridicalClientsService(ICreditUow creditUow, ICurrentUser currentUser)
 {
     this.creditUow = creditUow;
     this.currentUser = currentUser;
 }
 public PaymentService(ICreditUow creditUow, IAnnuityCreditCalculationService annuityCreditCalculationService)
 {
     this.creditUow = creditUow;
     this.annuityCreditCalculationService = annuityCreditCalculationService;
 }
 public CountryService(ICreditUow creditUow)
 {
     this.creditUow = creditUow;
 }
 public MapperProfileService(ICreditUow creditUow)
 {
     this.creditUow = creditUow;
 }