Exemplo n.º 1
0
 /// <summary>
 /// 更新流程业务{流程业务}对象(即:一条记录
 /// </summary>
 public int Update(TemplateStepMsg templateStepMsg)
 {
     using (var dbContext = UnitOfWork.Get(Unity.ContainerName))
     {
         return(new TemplateStepMsgRepository(dbContext).Update(templateStepMsg));
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 更新流程业务{流程业务}对象(即:一条记录
 /// </summary>
 public int Update(TemplateStepMsg templateStepMsg)
 {
     return(Update <TemplateStepMsg>(templateStepMsg));
 }
Exemplo n.º 3
0
 /// <summary>
 /// 添加流程业务{流程业务}对象(即:一条记录
 /// </summary>
 public long Add(TemplateStepMsg templateStepMsg)
 {
     return(Add <TemplateStepMsg>(templateStepMsg));
 }