Esempio n. 1
0
        /// <summary>
        /// 编辑帮厨
        /// </summary>
        /// <param name="Param"></param>
        /// <returns></returns>
        public string EditHelper(RequestCookHelper Param)
        {
            CookHelper helper = Param.MapToEntity <CookHelper>();

            return(Insert(helper) ? ServiceMessage.INSERTSUCCESS : ServiceMessage.INSERTFAIL);
        }
Esempio n. 2
0
 public ObjectResultEx EditHelper(RequestCookHelper Param)
 {
     return(ObjectResultEx.Instance(CookWebService.EditHelper(Param), 1, RetrunMessge.SUCCESS, HttpCode.Success));
 }