コード例 #1
0
ファイル: MateriaLogic.cs プロジェクト: Net2018-UTN/TP2NET
 public List <Materia> GetAll()
 {
     try
     {
         return(materiaData.GetAll());
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
コード例 #2
0
 public List <Materia> GetAll()
 {
     try
     {
         return(MateriaData.GetAll());
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de Materias", Ex);
         throw ExcepcionManejada;
     }
 }
コード例 #3
0
 public List <Materia> GetAll()
 {
     try
     {
         List <Materia> materias = materiaAdapter.GetAll();
         return(materias);
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de materias", Ex);
         throw ExcepcionManejada;
     }
 }
コード例 #4
0
ファイル: MateriaLogic.cs プロジェクト: Guido1312/Tp2-.Net
        public List <Materia> GetAll()
        {
            MateriaAdapter materia = new MateriaAdapter();

            return(materia.GetAll());
        }
コード例 #5
0
 public List <Materia> GetAll()
 {
     return(MateriaData.GetAll());
 }
コード例 #6
0
 public DataTable GetAll(int idplan)
 {
     return(MateriaData.GetAll(idplan));
 }