public EstatesController(
     IEstatesService estatesService,
     IEstateCategoriesService estateCategoriesService)
 {
     this.estatesService          = estatesService;
     this.estateCategoriesService = estateCategoriesService;
 }
Пример #2
0
        public EstatesViewModel(IEstatesService estatesService, ILookupsService lookupsService, IEstatesLookupsService estatesLookupsService)
        {
            Title = "Estates";

            _estatesService        = estatesService;
            _lookupsService        = lookupsService;
            _estatesLookupsService = estatesLookupsService;

            Estates = new ObservableCollectionFast <EstateRow>();
        }
Пример #3
0
 public RealEstatesController(IEstatesService estatesService)
 {
     this.estatesService = estatesService;
 }