示例#1
0
        /// <summary>
        /// 获取服务预约保养套餐
        /// </summary>
        /// <param name="ServiceType"></param>
        /// <returns></returns>
        public MD_MaintenancePackList getMaintenancePackList(CT_Maintenance_Pack MaintenancePack)
        {
            string strSql = "select * from CT_Maintenance_Pack where MP_AD_Code=" + MaintenancePack.MP_AD_Code + "";

            MD_MaintenancePackList o = new MD_MaintenancePackList();

            o.Maintenance_Pack_List = DataHelper.ConvertToList <CT_Maintenance_Pack>(strSql);

            return(o);
        }
示例#2
0
 /// <summary>
 /// 获取服务套餐
 /// </summary>
 /// <param name="MaintenancePack"></param>
 /// <returns></returns>
 public MD_MaintenancePackList getMaintenancePackList(CT_Maintenance_Pack MaintenancePack)
 {
     return(o.getMaintenancePackList(MaintenancePack));
 }