Click or drag to resize
IRepositoryT Interface
Standard Repo providing CRUD operations

Namespace: RMP.WCF.Model
Assembly: RMP.WCF.Model (in RMP.WCF.Model.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IRepository<T>

Type Parameters

T
Type to use in repo

The IRepositoryT type exposes the following members.

Methods
  NameDescription
Public methodCreate
Creates a new Record
Public methodDelete(Int32)
Deletes an record by its PK
Public methodDelete(String)
Deletes records based on a where clause
Public methodReadList
Gets records using the provided params
Public methodReadListAll
Get all records
Public methodReadSingle
Gets a single record by its PK
Public methodUpdate
Updates an Record that is already created in storage
Top
Remarks
See Also