30 lines
562 B
C#
30 lines
562 B
C#
|
|
using InSituLaboratory.Models;
|
|||
|
|
using Prism.Services.Dialogs;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.ViewModels.Pages.Dialogs
|
|||
|
|
{
|
|||
|
|
public class ModifySequentialViewModel : DialogViewModelBase
|
|||
|
|
{
|
|||
|
|
public ModifySequentialViewModel()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override void OnDialogOpened(IDialogParameters parameters)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override void DoSave()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|