C# Class CustomerService.DAL.Solution

数据访问类:Solution
Afficher le fichier Open project: NanQi/demo

Méthodes publiques

Méthode Description
Add ( CustomerService model ) : bool

增加一条数据

Delete ( System.Guid GUID ) : bool

删除一条数据

DeleteList ( string GUIDlist ) : bool

批量删除数据

Exists ( System.Guid GUID ) : bool

是否存在该记录

GetList ( int Top, string strWhere, string filedOrder ) : DataSet

获得前几行数据

GetList ( string strWhere ) : DataSet

获得数据列表

GetModel ( System.Guid GUID ) : CustomerService.Model.Solution

得到一个对象实体

Solution ( ) : System
Update ( CustomerService model ) : bool

更新一条数据

Method Details

Add() public méthode

增加一条数据
public Add ( CustomerService model ) : bool
model CustomerService
Résultat bool

Delete() public méthode

删除一条数据
public Delete ( System.Guid GUID ) : bool
GUID System.Guid
Résultat bool

DeleteList() public méthode

批量删除数据
public DeleteList ( string GUIDlist ) : bool
GUIDlist string
Résultat bool

Exists() public méthode

是否存在该记录
public Exists ( System.Guid GUID ) : bool
GUID System.Guid
Résultat bool

GetList() public méthode

获得前几行数据
public GetList ( int Top, string strWhere, string filedOrder ) : DataSet
Top int
strWhere string
filedOrder string
Résultat System.Data.DataSet

GetList() public méthode

获得数据列表
public GetList ( string strWhere ) : DataSet
strWhere string
Résultat System.Data.DataSet

GetModel() public méthode

得到一个对象实体
public GetModel ( System.Guid GUID ) : CustomerService.Model.Solution
GUID System.Guid
Résultat CustomerService.Model.Solution

Solution() public méthode

public Solution ( ) : System
Résultat System

Update() public méthode

更新一条数据
public Update ( CustomerService model ) : bool
model CustomerService
Résultat bool