IMoviesCategoryService Interface

Template MVC

IMoviesCategoryService Interface

[Missing <summary> documentation for "T:Template.Service.Interface.IMoviesCategoryService"]

Namespace:  Template.Service.Interface
Assembly:  Template.Service (in Template.Service.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public interface IMoviesCategoryService : IService<MoviesCategoryModel>

The IMoviesCategoryService type exposes the following members.

Methods
  NameDescription
Public methodAdd
Add an entity based on the passed model and insert it on database
(Inherited from IServiceTModel.)
Public methodAddIEnumetable
Add an IEnumerable of entities based on the passed models IEnumerable amd insert them on database
(Inherited from IServiceTModel.)
Public methodDelete
Add an entity based on the passed model and delete it on database
(Inherited from IServiceTModel.)
Public methodDeleteBy
Deletes any match with the given predicate
(Inherited from IServiceTModel.)
Public methodEdit
Add an entity based on the passed model and delete it on database
(Inherited from IServiceTModel.)
Public methodFindBy
Retuns an IEnumerable of models based on the expresion, retreives entities from the database and convert them to models
(Inherited from IServiceTModel.)
Public methodGet
Get an unique model based on the expresion, retreives the entity and convert it to model
(Inherited from IServiceTModel.)
Public methodGetAll
Get all the elements of the database, retreives entities from the database and convert them to models
(Inherited from IServiceTModel.)
Public methodSelectWhereTResult
This function allows to select the specific properties and filter by where clause on database, not on memory, in that way it improves the performace
(Inherited from IServiceTModel.)
Top
See Also