public HomeownerController(
     IApartmentRepository apartmentRepository,
     IHomeownerRepository homeownerRepository,
     IHomeownerService homeownerService,
     ITenantRepository tenantRepository)
 {
     this.apartmentRepository = apartmentRepository;
     this.homeownerRepository = homeownerRepository;
     this.homeownerService    = homeownerService;
     this.tenantRepository    = tenantRepository;
 }
Exemple #2
0
 public HomeownersController(IHomeownerService homeownerSevice)
 {
     this.homeownerSevice = homeownerSevice;
 }