public DebtsApplicationService(IDebtsService debtsServices, IUnitOfWork unitOfWork, IDebtRepository debtRepository)
 {
     _debtsServices = debtsServices;
     _unitOfWork    = unitOfWork;
 }
Example #2
0
 public DebtsController(IDebtsService debtsService)
 {
     _debtsService = debtsService;
 }
Example #3
0
 public DebtsController(IDebtRepository repository, IDebtsService service)
 {
     _respository = repository;
     _service     = service;
 }
 public CardsApplicationService(IUnitOfWork unitOfWork, IDebtsService debtsService, ICardService cardService)
 {
     _unitOfWork   = unitOfWork;
     _cardService  = cardService;
     _debtsService = debtsService;
 }