CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
ICommandBase.cs
Go to the documentation of this file.
1using Csla.Core;
3using System;
4using System.Collections.Generic;
5using System.ComponentModel;
6using System.Linq;
7using System.Text;
8using System.Threading.Tasks;
9
10namespace Csla
11{
16 public interface ICommandBase
18 INotifyPropertyChanged
19 { }
20}
This is the core interface implemented by all CSLA .NET base classes.
This interface is implemented by all Command objects.
This is the base class from which command objects will be derived.
Definition: ICommandBase.cs:19
Interface to be implemented by any object that supports serialization by the SerializationFormatterFa...