コード例 #1
0
 public EstatesController(
     IEstatesService estatesService,
     IEstateCategoriesService estateCategoriesService)
 {
     this.estatesService          = estatesService;
     this.estateCategoriesService = estateCategoriesService;
 }
コード例 #2
0
ファイル: EstatesViewModel.cs プロジェクト: 24RMS42/SIDE
        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;
 }