42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
using System.Windows.Input;
|
|
using XLIMS.CONTRACT;
|
|
using XLIMS.MVVM.Base;
|
|
using XLIMS.SP.Views;
|
|
|
|
namespace XLIMS.SP.ViewModels
|
|
{
|
|
public class MainViewModel : ViewModelBase, IActivityViewModel
|
|
{
|
|
#region Constructor
|
|
public MainViewModel(ILimsService limsService, IDialogService dialogService)
|
|
{
|
|
_limsService = limsService;
|
|
_dialogService = dialogService;
|
|
}
|
|
#endregion //Constructor
|
|
|
|
#region Events
|
|
#endregion //Events
|
|
|
|
#region Fields
|
|
private readonly ILimsService _limsService;
|
|
private readonly IDialogService _dialogService;
|
|
#endregion //Fields
|
|
|
|
#region Properties
|
|
public string Title => "Словари";
|
|
public object View => new MainView();
|
|
#endregion //Properties
|
|
|
|
#region Methods
|
|
#endregion //Methods
|
|
|
|
#region Commands
|
|
#endregion //Commands
|
|
}
|
|
}
|