Example #1
0
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="templateId"></param>
 /// <returns></returns>
 public int DeleteMessageTemplate(decimal templateId)
 {
     using (Biz210 biz = new Biz210())
     {
         return(biz.DeleteMessageTemplate(templateId));
     }
 }
Example #2
0
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="templateId"></param>
 /// <returns></returns>
 public int DeleteSportItem(decimal templateId)
 {
     using (Biz210 biz = new Biz210())
     {
         return(biz.DeleteSportItem(templateId));
     }
 }
Example #3
0
 /// <summary>
 /// 保存
 /// </summary>
 /// <param name="vo"></param>
 /// <param name="templateId"></param>
 /// <returns></returns>
 public int SaveMessageTemplate(EntityDicMessageContent vo, out decimal templateId)
 {
     using (Biz210 biz = new Biz210())
     {
         return(biz.SaveMessageTemplate(vo, out templateId));
     }
 }
Example #4
0
 /// <summary>
 /// 保存
 /// </summary>
 /// <param name="vo"></param>
 /// <param name="templateId"></param>
 /// <returns></returns>
 public int SaveSportItem(EntityDicSportItem vo, out decimal templateId)
 {
     using (Biz210 biz = new Biz210())
     {
         return(biz.SaveSportItem(vo, out templateId));
     }
 }