示例#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;
 }
 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;
 }