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