Click or drag to resize
IEditorT Interface
The general editor interface containing all 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 IEditor<T>
where T : IDatabaseRow

Type Parameters

T
A IDatabaseRow Type

The IEditorT type exposes the following members.

Methods
  NameDescription
Public methodCreate
Creates a new record from the provided record
Public methodDelete(Int32)
Deletes a single record based on the Integer provided
Public methodCode exampleDelete(String)
Deletes multiple records based on the where clause provided
Public methodReadList
Gets records based on the params provided
Public methodReadListAll
Gets all the records
Public methodReadSingle
Gets a single record based on the records Primary Key
Public methodUpdate
Updates an existing record
Top
See Also