Exemplo n.º 1
0
 public DebtsApplicationService(IDebtsService debtsServices, IUnitOfWork unitOfWork, IDebtRepository debtRepository)
 {
     _debtsServices = debtsServices;
     _unitOfWork    = unitOfWork;
 }
Exemplo n.º 2
0
 public DebtsController(IDebtsService debtsService)
 {
     _debtsService = debtsService;
 }
Exemplo n.º 3
0
 public DebtsController(IDebtRepository repository, IDebtsService service)
 {
     _respository = repository;
     _service     = service;
 }
Exemplo n.º 4
0
 public CardsApplicationService(IUnitOfWork unitOfWork, IDebtsService debtsService, ICardService cardService)
 {
     _unitOfWork   = unitOfWork;
     _cardService  = cardService;
     _debtsService = debtsService;
 }