Exemple #1
0
 public Motorista BuscarCPF(string cpf)
 {
     try
     {
         Motorista motorista = _multaDAL.BuscarCPF(cpf);
         return(motorista);
     }
     catch (ConcorrenciaBancoException)
     {
         throw new ConcorrenciaBancoException("Favor tentar novamente mais tarde.");
     }
 }