Exemplo n.º 1
0
 public string Post(Precio obj)
 {
     PrecioBL bl = new PrecioBL();
     return bl.PrecioCreate(obj);
 }
Exemplo n.º 2
0
 public List<PrecioView> Get(int ID_Producto)
 {
     PrecioBL bl = new PrecioBL();
     return bl.PrecioList(ID_Producto);
 }