public AccountClientController(IAccountClientService repository
                                , IClientService repositoryClient
                                , IRequestService requestService,
                                IDebService debService)
 {
     _repository       = repository;
     _repositoryClient = repositoryClient;
     _requestService   = requestService;
     _debService       = debService;
 }
 public PaymentController(IPaymentService paymentService, IDebService debService)
 {
     _paymentService = paymentService;
     _debService     = debService;
 }
 public DebController(IDebService repository)
 {
     _repository = repository;
 }
 public PaymentService(ApplicationDbContext dbContext, IDebService deb)
 {
     _dbContext = dbContext;
     _deb       = deb;
 }
 public DebController(IDebService repository)
 {
     _repository = repository;
     _dateTime   = DateTime.Now;
 }