예제 #1
0
 public void UpdateStatus(List <string> Ids)
 {
     foreach (string s in Ids)
     {
         Core.Log entity = _LogRepository.Get(s);
         entity.Other1 = "1";
         _LogRepository.Update(entity);
     }
 }
예제 #2
0
 public void InsertLog(Core.Log entity)
 {
     _LogRepository.Insert(entity);
 }