CompanyServiceBase<T> class
Base CRUD for Customer API services working on company data.
public abstract class CompanyServiceBase<T> : ReadOnlyCompanyService<T>, ICompanyService<T>
where T : IEntity
parameter |
description |
T |
target entity type |
Public Members
name |
description |
virtual Add(…) |
Adds an item (POST) to a remote company collection. |
virtual Delete(…) |
Deletes an item (DELETE) from a remote company collection. |
virtual NewInstance(…) |
Returns a new, appropriately valued instance. |
virtual Update(…) |
Updates an item (PUT) in a remote company location. |
Protected Members
See Also