8using System.Threading.Tasks;
15 public interface IDataPortal
58 object Create(params
object[] criteria);
65 object Fetch(params
object[] criteria);
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.