コード例 #1
0
 public ApartamentsController(
     IApartamentService apartaments,
     IDealerService dealers,
     ICategoryService categories,
     ICurrentUserService currentUser,
     IBus bus)
 {
     this.apartaments    = apartaments;
     this.dealers        = dealers;
     this.categories     = categories;
     this.currentUser    = currentUser;
     this.massTransitBus = bus;
 }
コード例 #2
0
 public ApartamentsController(IApartamentService apartamentService, IApartamentViewService apartamentViewService, IMapper mapper)
 {
     this.apartamentService     = apartamentService;
     this.apartamentViewService = apartamentViewService;
     this.mapper = mapper;
 }
コード例 #3
0
 public ApartamentsController( IApartamentService apartamentService)
 {
     _apartamentService = apartamentService;
 }