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.
IAsyncLoader.cs
Go to the documentation of this file.
1using System;
2
4{
5 internal interface IAsyncLoader
6 {
7 IPropertyInfo Property { get; }
8 void Load(Action<IAsyncLoader, IDataPortalResult> callback);
9 }
10}