示例#1
0
 public static List <eFotos> selFotos(int?IdPlanta)
 {
     try
     {
         dFotos db = new dFotos();
         return(db.selFotos(IdPlanta));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
 public static bool insFotos(eFotos foto)
 {
     try
     {
         dFotos db = new dFotos();
         return(db.insFotos(foto));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }