public EstatesController( IEstatesService estatesService, IEstateCategoriesService estateCategoriesService) { this.estatesService = estatesService; this.estateCategoriesService = estateCategoriesService; }
public EstatesViewModel(IEstatesService estatesService, ILookupsService lookupsService, IEstatesLookupsService estatesLookupsService) { Title = "Estates"; _estatesService = estatesService; _lookupsService = lookupsService; _estatesLookupsService = estatesLookupsService; Estates = new ObservableCollectionFast <EstateRow>(); }
public RealEstatesController(IEstatesService estatesService) { this.estatesService = estatesService; }