Interface IModelEntityService<T, TEdit, TShow, TInsert, TList>
Represents a service interface for a model entity.
public interface IModelEntityService<T, TEdit, TShow, TInsert, TList> : IShowEntityService<T, TShow>, IEditEntityService<T, TEdit>, IListEntityService<T, TList>, IInsertEntityService<T, TInsert>, IEntityService<T> where T : class where TEdit : class where TShow : class where TInsert : class where TList : class
Type Parameters
T
The type of the model entity.
TEdit
The type of the entity used for editing.
TShow
The type of the entity used for showing.
TInsert
The type of the entity used for inserting.
TList
The type of the entity used for listing.