CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
TestViewModel.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using Csla.Xaml;
7
9{
10 public class TestViewModel<T> : ViewModel<T>
11 {
12 public void Save() => DoSave();
13 }
14}
Base class used to create ViewModel objects, with pre-existing verbs for use by InvokeMethod or Invok...