Repository Service with Cancellation Support
Last updated
Last updated
ICancelRepositoryService<TModel>
in assembly SanteDB.Core.Api version 3.0.1980.0
Represents a repository that can cancel an Act that is in progress
Operation | Response/Return | Input/Parameter | Description |
---|---|---|---|
Represents an act repository service.
This service implementation is abstract or is a generic definition. It is intended to be implemented or constructed at runtime from other services and cannot be used directly
# Example Implementation ```csharp /// Example Implementation using SanteDB.Core.Services; /// Other usings here public class MyCancelRepositoryService : SanteDB.Core.Services.ICancelRepositoryService { public String ServiceName => "My own ICancelRepositoryService`1 service"; ////// Cancels the specified ///public TModel Cancel(Guid id){ throw new System.NotImplementedException(); } } ```
Cancel
TModel
Guid id
Cancels the specified