routine update

This commit is contained in:
yubaolee
2017-01-23 18:25:24 +08:00
parent 550c511be1
commit 2900d52bc3
5 changed files with 99 additions and 93 deletions

View File

@@ -79,9 +79,10 @@ namespace OpenAuth.Domain.Service
}
}
public void RemoveForm(string keyValue)
public void RemoveForm(Guid keyValue)
{
throw new NotImplementedException();
_unitWork.Delete<WFSchemeInfo>(u => u.Id == keyValue);
_unitWork.Delete<WFSchemeContent>(u =>u.SchemeInfoId == keyValue);
}
public WFSchemeInfo GetEntity(Guid keyValue)