public bool Deletar(int ID)
 {
     try
     {
         return(_logsRepository.Delete(ID));
     }
     catch
     {
         return(false);
     }
 }
Beispiel #2
0
 public Logs DeleteLog(int logId)
 {
     return(_logs.Delete(logId));
 }