using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///软件管理-数据库操作接口
///
public interface ISoft_ManageDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
Soft_Manage GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination,string _SoftName,int? _SoftPrice,string _SoftContent,DateTime? _BeginLastUpdateTime,DateTime? _EndLastUpdateTime,string _Operator);
}
}