IShell.cs 188 B

1234567891011
  1. namespace InABox.Mobile
  2. {
  3. public interface IShell
  4. {
  5. IModel Parent { get; }
  6. bool IsChanged();
  7. void Save(string auditmessage);
  8. void Cancel();
  9. }
  10. }