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
TThe type of the model entity.
TEditThe type of the entity used for editing.
TShowThe type of the entity used for showing.
TInsertThe type of the entity used for inserting.
TListThe type of the entity used for listing.