Пример #1
0
        public static MajorIndexVM LoadMajorIndexVM(IMajorIndexService majorIndexService)
        {
            MajorIndexVM majorIndexVM = new MajorIndexVM(majorIndexService);

            majorIndexVM.LoadMajorIndexes();
            return(majorIndexVM);
        }
Пример #2
0
        public static MajorIndexListingViewModel LoadMajorIndexViewModel(IMajorIndexService majorIndexService)
        {
            MajorIndexListingViewModel majorIndexViewModel = new MajorIndexListingViewModel(majorIndexService);

            majorIndexViewModel.LoadMajorIndexes();
            return(majorIndexViewModel);
        }
Пример #3
0
        public static MajorIndexListingViewModel LoadMajorIndexViewModel(IMajorIndexService majorIndexService)
        {
            MajorIndexListingViewModel majorIndexViewModel = new MajorIndexListingViewModel(majorIndexService);

            majorIndexViewModel.LoadMajorIndexesCommand.Execute(null);

            return(majorIndexViewModel);
        }
Пример #4
0
 public MajorIndexListingViewModel(IMajorIndexService majorIndexService)
 {
     LoadMajorIndexesCommand = new LoadMajorIndexesCommand(this, majorIndexService);
 }
Пример #5
0
 public MajorIndexListingViewModel(IMajorIndexService indexService)
 {
     _indexService = indexService;
 }
Пример #6
0
 public MajorIndexListingViewModelFactory(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }
Пример #7
0
 public MajorIndexVM(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }
Пример #8
0
 public MILVMFactory(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }
Пример #9
0
 public LoadMajorIndexesCommand(MajorIndexListingViewModel majorIndexListingViewModel, IMajorIndexService majorIndexService)
 {
     _majorIndexListingViewModel = majorIndexListingViewModel;
     _majorIndexService          = majorIndexService;
 }
Пример #10
0
 public MajorIndexListingViewModel(IMajorIndexService majorIndexService)
 {
     this.majorIndexService = majorIndexService;
 }
Пример #11
0
 public MajorIndexViewModel(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }