Account.BLL.ManifestBLL.GetManifest C# (CSharp) Method

GetManifest() public method

按起止日期获取消费明细
public GetManifest ( System.DateTime start, System.DateTime end ) : IEnumerable
start System.DateTime
end System.DateTime
return IEnumerable
        public IEnumerable<Manifest> GetManifest(DateTime start, DateTime end)
        {
            return _dal.GetManifest(start, end);
        }

Same methods

ManifestBLL::GetManifest ( System.DateTime start, System.DateTime end, int pageIndex, int pageSize ) : dynamic