C# Class SIP_Agent.Model.TaskCall

Inheritance: Crud, ICrud
Datei anzeigen Open project: anroots/SIP-Agent

Private Properties

Property Type Description

Public Methods

Method Description
FindAll ( int Limit ) : IQueryable

Find all non-deleted rows

Load ( int RowId ) : bool
New ( ) : int

Creates a new row in the database

New ( int TaskId, int CallId ) : int

Create a new binding between a task and a call

Method Details

FindAll() public method

Find all non-deleted rows
public FindAll ( int Limit ) : IQueryable
Limit int Max number of rows to return
return IQueryable

Load() public method

public Load ( int RowId ) : bool
RowId int
return bool

New() public method

Creates a new row in the database
public New ( ) : int
return int

New() public method

Create a new binding between a task and a call
public New ( int TaskId, int CallId ) : int
TaskId int Task ID
CallId int Call ID
return int