示例#1
0
 public List <Plan> getAll()
 {
     try
     {
         return(planData.GetAll());
     }
     catch (Exception exc)
     {
         throw;
     }
 }
示例#2
0
 public List <Plan> GetAll()
 {
     try
     {
         return(PlanData.GetAll());
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de usuarios", Ex);
         throw ExcepcionManejada;
     }
 }
示例#3
0
 public List <Plan> GetAll()
 {
     try
     {
         List <Plan> planes = planAdapter.GetAll();
         return(planes);
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de planes", Ex);
         throw ExcepcionManejada;
     }
 }
示例#4
0
 public List <Plan> GetAll()
 {
     return(planDatos.GetAll());
 }
示例#5
0
        public List <Plan> GetAll()
        {
            PlanAdapter plan = new PlanAdapter();

            return(plan.GetAll());
        }
示例#6
0
 public List <Plan> GetAll()
 {
     return(PlanData.GetAll());
 }
示例#7
0
 public DataTable GetAll()
 {
     return(PlanData.GetAll());
 }