Example #1
0
 public static IList <Equipe> Listar()
 {
     try
     {
         return(EquipeDal.Listar());
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 public static Equipe Encontrar(string codigo)
 {
     try
     {
         return(EquipeDal.Encontrar(codigo));
     }
     catch (Exception)
     {
         throw;
     }
 }