예제 #1
0
 public AboutController(IApartmentsService apartmentsService, ICitiesService citiesService, IBuildingsService buildingsService, IUsersService usersService)
 {
     this.apartmentsService = apartmentsService;
     this.citiesService     = citiesService;
     this.buildingsService  = buildingsService;
     this.usersService      = usersService;
 }
예제 #2
0
 public ApartmentsController(IApartmentsService apartmentsService, IEntrancesService entrancesService, IPaymentsService paymentsService)
 {
     this.apartmentsService = apartmentsService;
     this.entrancesService  = entrancesService;
     this.paymentsService   = paymentsService;
 }
예제 #3
0
 public PaymentsController(IPaymentsService paymentsService, IApartmentsService apartmentsService)
 {
     this.paymentsService   = paymentsService;
     this.apartmentsService = apartmentsService;
 }