Пример #1
0
 public BillsController(IBillService billService, IApartmentServise apartmentServise
                        , IUserService userService)
 {
     this.billService      = billService;
     this.apartmentServise = apartmentServise;
     this.userService      = userService;
 }
Пример #2
0
 public CodeController(ICodeService codeService, IApartmentServise apartmentServise)
 {
     this.codeService      = codeService;
     this.apartmentServise = apartmentServise;
 }
Пример #3
0
 public ApartmentsController(IApartmentServise apartmentServise)
 {
     this.apartmentServise = apartmentServise;
 }