Exemple #1
0
 public bool eliminarTipoProducto(int id, string schema)
 {
     try
     {
         return(TipoProductoDAO.getInstance().eliminarTipoProducto(id, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemple #2
0
 public string nuevoTipoProducto(string nombre, string schema)
 {
     try
     {
         return(TipoProductoDAO.getInstance().nuevoTipoProducto(nombre, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemple #3
0
 public bool updateTipoProducto(int id, string nombre, string schema)
 {
     try
     {
         return(TipoProductoDAO.getInstance().updateTipoProducto(id, nombre, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemple #4
0
 public List <TipoProducto> listaTiposProductos(string schema)
 {
     try
     {
         return(TipoProductoDAO.getInstance().listaTiposProductos(schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }