IService<T> interface
CRUD service working with a remote resource.
public interface IService<T> : IReadOnlyService<T>
where T : IEntity
parameter | description |
---|---|
T |
Members
name | description |
---|---|
Add(…) | Adds an item to a remote resource. |
Delete(…) | Deletes an item from a remote resource. |
Update(…) | Updates an item on a remote resource. |
See Also
- interface IReadOnlyService<T>
- interface IEntity
- namespace Amica