public ActionResult Insert(Cliente newModel) { if (ModelState.IsValid) { newModel.InsertCliente(); return RedirectToAction("Index"); } else { return View(newModel); } }
public ActionResult Edit(Cliente newModel) { if (ModelState.IsValid) { newModel.UpdateCliente(); return RedirectToAction("Index"); } else { //newModel.listaTiposProducto = Producto.GetListaTiposProducto(); return View(newModel); } }
//GET: Producto/Insert/ public ActionResult Insert() { Cliente newModel = new Cliente(); return View(newModel); }
// GET: Cliente/Edit/5 public ActionResult Edit(int idCliente) { Cliente newModel = new Cliente(idCliente); //newModel.listaTiposProducto = Producto.GetListaTiposProducto(); return View(newModel); }
// GET: Cliente/Details/5 public ActionResult Details(int idCliente) { Cliente newModel = new Cliente(idCliente); return View(newModel); }
public ActionResult Delete(int idCliente, Cliente newModel) { Cliente.DeleteCliente(idCliente); return RedirectToAction("Index"); }
/// <summary> /// Genera la lista de productos de la DB /// </summary> /// <returns></returns> public static List<Cliente> GetListaClientes() { List<Cliente> listaClientes = new List<Cliente>(); Data.dsClienteTableAdapters.ClienteTableAdapter Adapter = new Data.dsClienteTableAdapters.ClienteTableAdapter(); Data.dsCliente.ClienteDataTable dt = Adapter.SelectListaClientes(); foreach (var dr in dt) { Cliente item = new Cliente(); item.idCliente = dr.idCliente; if (!dr.IscRepresentanteNull()) item.cRepresentante = dr.cRepresentante; if (!dr.IscEmpresaNull()) item.cEmpresa = dr.cEmpresa; if (!dr.IscEmailNull()) item.cEmail = dr.cEmail; if (!dr.IscTelefonoNull()) item.cTelefono = dr.cTelefono; if (!dr.IsnDescuentoNull()) item.nDescuento = dr.nDescuento; if (!dr.IscRNCNull()) item.cRNC = dr.cRNC; listaClientes.Add(item); } return listaClientes; }
//GET: Producto/Insert/ public ActionResult Insert() { Cliente newModel = new Cliente(); //newModel.listaTiposProducto = Producto.GetListaTiposProducto(); return View(newModel); }
// GET: Cliente/Delete/5 public ActionResult Delete(int id) { Cliente newModel = new Cliente(id); return View(newModel); }