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.
IDataPortalFactory.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IDataPortalService.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Implements a data portal service</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Text;
11
12namespace Csla
13{
19 public interface IDataPortalFactory
20 {
26 }
27}
Defines a data portal service used to get an access to a client-side data portal instance.
IDataPortal< T > GetPortal< T >()
Get a client-side data portal instance.
Interface defining the members of the data portal type.
Definition: IDataPortal.cs:21