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