Click or drag to resize

ICreateReadUpdateDeleteT Interface

A base interface for al CRUD operations

Namespace:  SandcastleTest.Generic.DAL
Assembly:  SandcastleTest (in SandcastleTest.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public interface ICreateReadUpdateDelete<T>
where T : PocoBase

Type Parameters

T
Base class for all POCOs

The ICreateReadUpdateDeleteT type exposes the following members.

Methods
  NameDescription
Public methodCreate
Create a new entity
Public methodDelete
Deletes an entity of T
Public methodGetEntity
Get an entity by Id
Public methodGetList
Get a list of T
Public methodUpdate
Update an entity of T
Top
See Also