first edit
This commit is contained in:
48
XLIMS.DEV/ViewModels/MainViewModel.cs
Normal file
48
XLIMS.DEV/ViewModels/MainViewModel.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Text;
|
||||
using System.Windows.Input;
|
||||
using XLIMS.CONTRACT;
|
||||
using XLIMS.DATA.Models;
|
||||
using XLIMS.MVVM.Base;
|
||||
using XLIMS.DEV.Views;
|
||||
|
||||
namespace XLIMS.DEV.ViewModels
|
||||
{
|
||||
public class MainViewModel : ViewModelBase,IActivityViewModel
|
||||
{
|
||||
#region Constructor
|
||||
public MainViewModel(ILimsService limsService, IDialogService dialogService)
|
||||
{
|
||||
_limsService = limsService;
|
||||
_dialogService = dialogService;
|
||||
//LoadSpoiAsync();
|
||||
}
|
||||
#endregion //Constructor
|
||||
|
||||
#region Events
|
||||
|
||||
#endregion //Events
|
||||
|
||||
#region Fields
|
||||
private readonly IDialogService _dialogService;
|
||||
private readonly ILimsService _limsService;
|
||||
#endregion //Fields
|
||||
|
||||
#region Properties
|
||||
public string Title => "Приборы";
|
||||
public object View => new MainView();
|
||||
#endregion //Properties
|
||||
|
||||
#region Methods
|
||||
|
||||
#endregion //Methods
|
||||
|
||||
#region Commands
|
||||
|
||||
|
||||
|
||||
#endregion //Commands
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user