Ejemplo n.º 1
0
        public MainWindowViewModel()
        {
            _detailsVm = new DetailsVm();
            GetEmployeeCmd = new GetEmployeeCmd(this);
            SaveEmployeeCmd = new SaveEmployeeCmd(this);
            WindowsLoadCmd = new GetAllEmployeesCmd(this);

            _employeeService = new EmployeeServiceClient();

        }
Ejemplo n.º 2
0
 public Details()
 {
     InitializeComponent();
     DataContext = new DetailsVm();
 }