crud de productos completado
This commit is contained in:
+11
-1
@@ -66,7 +66,17 @@ namespace compabetov2.database
|
||||
{
|
||||
return DAO.insertarProductoDAO(producto);
|
||||
}
|
||||
|
||||
|
||||
public static bool editarProducto(Producto producto)
|
||||
{
|
||||
return DAO.editarProductoDAO(producto);
|
||||
}
|
||||
|
||||
public static bool eliminarProducto(Producto producto)
|
||||
{
|
||||
return DAO.eliminarProductoDAO(producto);
|
||||
}
|
||||
|
||||
public static bool insertarCliente(Cliente cliente)
|
||||
{
|
||||
return DAO.insertarClienteDAO(cliente);
|
||||
|
||||
Reference in New Issue
Block a user