Add project files.
This commit is contained in:
18
OemanTrader.WPF/ViewModels/HomeViewModel.cs
Normal file
18
OemanTrader.WPF/ViewModels/HomeViewModel.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OemanTrader.WPF.ViewModels
|
||||
{
|
||||
public class HomeViewModel : ViewModelBase
|
||||
{
|
||||
public MajorIndexListingViewModel MajorIndexListingViewModel { get; set; }
|
||||
|
||||
public HomeViewModel(MajorIndexListingViewModel majorIndexListingViewModel)
|
||||
{
|
||||
MajorIndexListingViewModel = majorIndexListingViewModel;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user