C# Class Account.DAL.ManifestDAL

Show file Open project: KINGGUOKUN/Account Class Usage Examples

Public Methods

Method Description
AddManifest ( Manifest manifest ) : Manifest

添加消费明细

DeleteManifest ( string ID ) : bool

删除消费明细

GetManifest ( System.DateTime start, System.DateTime end ) : IEnumerable

按起止日期获取消费明细

GetManifest ( System.DateTime start, System.DateTime end, int pageIndex, int pageSize, int &count ) : IEnumerable

按起止日期获取消费明细

ManifestDAL ( ) : System
UpdateManifest ( Manifest manifest ) : bool

修改消费明细

Method Details

AddManifest() public method

添加消费明细
public AddManifest ( Manifest manifest ) : Manifest
manifest Manifest
return Manifest

DeleteManifest() public method

删除消费明细
public DeleteManifest ( string ID ) : bool
ID string
return bool

GetManifest() public method

按起止日期获取消费明细
public GetManifest ( System.DateTime start, System.DateTime end ) : IEnumerable
start System.DateTime
end System.DateTime
return IEnumerable

GetManifest() public method

按起止日期获取消费明细
public GetManifest ( System.DateTime start, System.DateTime end, int pageIndex, int pageSize, int &count ) : IEnumerable
start System.DateTime
end System.DateTime
pageIndex int
pageSize int
count int
return IEnumerable

ManifestDAL() public method

public ManifestDAL ( ) : System
return System

UpdateManifest() public method

修改消费明细
public UpdateManifest ( Manifest manifest ) : bool
manifest Manifest
return bool