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