public static MajorIndexVM LoadMajorIndexVM(IMajorIndexService majorIndexService) { MajorIndexVM majorIndexVM = new MajorIndexVM(majorIndexService); majorIndexVM.LoadMajorIndexes(); return(majorIndexVM); }
public static MajorIndexListingViewModel LoadMajorIndexViewModel(IMajorIndexService majorIndexService) { MajorIndexListingViewModel majorIndexViewModel = new MajorIndexListingViewModel(majorIndexService); majorIndexViewModel.LoadMajorIndexes(); return(majorIndexViewModel); }
public static MajorIndexListingViewModel LoadMajorIndexViewModel(IMajorIndexService majorIndexService) { MajorIndexListingViewModel majorIndexViewModel = new MajorIndexListingViewModel(majorIndexService); majorIndexViewModel.LoadMajorIndexesCommand.Execute(null); return(majorIndexViewModel); }
public MajorIndexListingViewModel(IMajorIndexService majorIndexService) { LoadMajorIndexesCommand = new LoadMajorIndexesCommand(this, majorIndexService); }
public MajorIndexListingViewModel(IMajorIndexService indexService) { _indexService = indexService; }
public MajorIndexListingViewModelFactory(IMajorIndexService majorIndexService) { _majorIndexService = majorIndexService; }
public MajorIndexVM(IMajorIndexService majorIndexService) { _majorIndexService = majorIndexService; }
public MILVMFactory(IMajorIndexService majorIndexService) { _majorIndexService = majorIndexService; }
public LoadMajorIndexesCommand(MajorIndexListingViewModel majorIndexListingViewModel, IMajorIndexService majorIndexService) { _majorIndexListingViewModel = majorIndexListingViewModel; _majorIndexService = majorIndexService; }
public MajorIndexListingViewModel(IMajorIndexService majorIndexService) { this.majorIndexService = majorIndexService; }
public MajorIndexViewModel(IMajorIndexService majorIndexService) { _majorIndexService = majorIndexService; }