49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
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
|
|
}
|
|
}
|