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; }
public ApartamentsController( IApartamentService apartamentService) { _apartamentService = apartamentService; }