CY_ECommercePlatform/CY.BLL/OA/OA_OutOfStorageBLL.cs
@@ -219,5 +219,29 @@
        {
            return outOfStorageDAL.getModelList(pa, FirmId, Keyids);
        }
        public IEnumerable<Model.OA_OutOfStorage> getModelListByRemark(Guid FirmId, string Remark)
        {
            return outOfStorageDAL.getModelListByRemark( FirmId, Remark);
        }
        /// <summary>
        /// 删除合作客户
        /// </summary>
        /// <param name="rType"></param>
        /// <returns></returns>
        public bool DeleteModel(CY.Model.OA_OutOfStorage rType)
        {
            try
            {
                outOfStorageDAL.DeleteModel(rType);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return true;
        }
    }
}