ServiceBase<T> class
Base CRUD for Customer API services.
public abstract class ServiceBase<T> : ReadOnlyServiceBase<T>, IService<T>
where T : IEntity
parameter | description |
---|---|
T | target entity type |
Public Members
name | description |
---|---|
virtual Add(…) | Adds an item (POST) to a remote resource. |
virtual Delete(…) | Deletes an item (DELETE) from a remote resource. |
virtual Update(…) | Updates an item (PUT) in a remote location. |
Protected Members
name | description |
---|---|
ServiceBase() | The default constructor. |
See Also
- class ReadOnlyServiceBase<T>
- interface IService<T>
- interface IEntity
- namespace Amica