Account.DAL.ManifestDAL.DeleteManifest C# (CSharp) Method

DeleteManifest() public method

删除消费明细
public DeleteManifest ( string ID ) : bool
ID string
return bool
        public bool DeleteManifest(string ID)
        {
            return _database.Delete<Manifest>(Predicates.Field<Manifest>(x => x.ID, Operator.Eq, ID));
        }