예제 #1
0
 public List <Receta> ListReceta()
 {
     try
     {
         return(RecetaConnection.GetInstance().ListReceta());
     }
     catch (Exception e)
     {
         throw e;
     }
 }
예제 #2
0
 public bool InsertReceta(Receta objReceta)
 {
     try
     {
         return(RecetaConnection.GetInstance().InsertReceta(objReceta));
     }
     catch (Exception e)
     {
         throw e;
     }
 }