Exemplo n.º 1
0
 public void SubmitForm(ScoreDetailEntity userEntity, UserLogOnEntity userLogOnEntity, string keyValue)
 {
     if (!string.IsNullOrEmpty(keyValue))
     {
         userEntity.Modify(keyValue);
     }
     else
     {
         userEntity.Create();
     }
     service.SubmitForm(userEntity, userLogOnEntity, keyValue);
 }
Exemplo n.º 2
0
 public void UpdateForm(ScoreDetailEntity userEntity)
 {
     service.Update(userEntity);
 }