예제 #1
0
 public EventLog EventLogID(int ID)
 {
     try
     {
         return(_eventlogRepository.GetById(ID));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public EventLog GetById(long id)
 {
     return(_eventLogRepository.GetById(id));
 }