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