Interface IClientOnSaveHelper
An interface implemented by the core client library to provide the connection types (db, service) and opportunity to process the fact a save was successfully completed
Typically this implementation will check if any tasks were automatically created from the save and track them in the UI if they were
Namespace: LemonEdge.Client.Core.CommonUI
Assembly: API.dll
Syntax
public interface IClientOnSaveHelper
  Methods
OnSaveComplete(IEntityUpdaterUI)
Indicates a save was sucessfully completed, and provides a client process the ability to hook into that and display relevant contextual ui information
Declaration
Task OnSaveComplete(IEntityUpdaterUI context)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IEntityUpdaterUI | context | The context that just sucessfully completed a save process  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task | A task indicating the completion of the operation  |