8using System.Threading.Tasks;
Interface defining the members of the child data portal type.
Task< T > FetchChildAsync(params object[] criteria)
Starts an asynchronous data portal operation to create a business object.
T FetchChild(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
T CreateChild(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
Task< T > CreateChildAsync(params object[] criteria)
Starts an asynchronous data portal operation to create a business object.
Task UpdateChildAsync(T obj, params object[] parameters)
Called by a factory method in a business class or by the UI to update an object.
void UpdateChild(T obj, params object[] parameters)
Called by the business object's Save() method to insert, update or delete an object in the database.