Exemplo n.º 1
0
        public static MajorIndexVM LoadMajorIndexVM(IMajorIndexService majorIndexService)
        {
            MajorIndexVM majorIndexVM = new MajorIndexVM(majorIndexService);

            majorIndexVM.LoadMajorIndexes();
            return(majorIndexVM);
        }
Exemplo n.º 2
0
        public static MajorIndexListingViewModel LoadMajorIndexViewModel(IMajorIndexService majorIndexService)
        {
            MajorIndexListingViewModel majorIndexViewModel = new MajorIndexListingViewModel(majorIndexService);

            majorIndexViewModel.LoadMajorIndexes();
            return(majorIndexViewModel);
        }
Exemplo n.º 3
0
        public static MajorIndexListingViewModel LoadMajorIndexViewModel(IMajorIndexService majorIndexService)
        {
            MajorIndexListingViewModel majorIndexViewModel = new MajorIndexListingViewModel(majorIndexService);

            majorIndexViewModel.LoadMajorIndexesCommand.Execute(null);

            return(majorIndexViewModel);
        }
Exemplo n.º 4
0
 public MajorIndexListingViewModel(IMajorIndexService majorIndexService)
 {
     LoadMajorIndexesCommand = new LoadMajorIndexesCommand(this, majorIndexService);
 }
Exemplo n.º 5
0
 public MajorIndexListingViewModel(IMajorIndexService indexService)
 {
     _indexService = indexService;
 }
Exemplo n.º 6
0
 public MajorIndexListingViewModelFactory(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }
Exemplo n.º 7
0
 public MajorIndexVM(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }
Exemplo n.º 8
0
 public MILVMFactory(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }
Exemplo n.º 9
0
 public LoadMajorIndexesCommand(MajorIndexListingViewModel majorIndexListingViewModel, IMajorIndexService majorIndexService)
 {
     _majorIndexListingViewModel = majorIndexListingViewModel;
     _majorIndexService          = majorIndexService;
 }
Exemplo n.º 10
0
 public MajorIndexListingViewModel(IMajorIndexService majorIndexService)
 {
     this.majorIndexService = majorIndexService;
 }
Exemplo n.º 11
0
 public MajorIndexViewModel(IMajorIndexService majorIndexService)
 {
     _majorIndexService = majorIndexService;
 }