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
IDataPortal.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IDataPortal.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Interface defining the members of the data portal type</summary>
7//-----------------------------------------------------------------------
8using System.Threading.Tasks;
9
10namespace Csla
11{
15 public interface IDataPortal
16 {
24 Task<object> CreateAsync(params object[] criteria);
32 Task<object> FetchAsync(params object[] criteria);
38 Task<object> UpdateAsync(object obj);
44 Task<object> ExecuteAsync(object command);
50 Task DeleteAsync(params object[] criteria);
58 object Create(params object[] criteria);
65 object Fetch(params object[] criteria);
86 object Execute(object obj);
98 object Update(object obj);
104 void Delete(params object[] criteria);
105 }
106}
Task DeleteAsync(params object[] criteria)
Called by a factory method in a business class or by the UI to delete an object.
object Update(object obj)
Insert, update or delete an object in the database.
void Delete(params object[] criteria)
Called by a Shared (static in C#) method in the business class to cause immediate deletion of a speci...
Task< object > CreateAsync(params object[] criteria)
Starts an asynchronous data portal operation to create a business object.
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
Task< object > UpdateAsync(object obj)
Called by a factory method in a business class or by the UI to update an object.
object Execute(object obj)
Called to execute a Command object on the server.
Task< object > ExecuteAsync(object command)
Called by a factory method in a business class or by the UI to execute a command object.
object Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
Task< object > FetchAsync(params object[] criteria)
Starts an asynchronous data portal operation to create a business object.