Esempio n. 1
0
 public ResidentController(IResidentRepo residentRepo, IMapper mapper)
 {
     _repo   = residentRepo;
     _mapper = mapper;
 }
Esempio n. 2
0
 public TransactionController(IResidentRepo resident, ITransactionRepo transactionRepo)
 {
     this.resident = resident;
     trxRepo       = transactionRepo;
 }
Esempio n. 3
0
 public CustomerController(ICustomerRepo repo, IResidentRepo resident)
 {
     this.repo     = repo;
     this.resident = resident;
 }
Esempio n. 4
0
 public ResidentController(IMapper mapper, IResidentRepo repo, IApartmentRepo apartmentRepo)
 {
     _mapper        = mapper;
     _repo          = repo;
     _apartmentRepo = apartmentRepo;
 }
Esempio n. 5
0
 public ResidentController(IResidentRepo repo)
 {
     this.repo = repo;
 }