public DTOProducto GetById(int id) { DTOProducto producto = new DTOProducto(); producto.Nombre = "ACE"; producto.Precio = 200; producto.FechaRegistro = DateTime.Now; producto.Fechamodificacion = DateTime.Now; return(producto); }
public bool Insert(DTOProducto x) { throw new NotImplementedException(); }
public bool Edit(DTOProducto id) { throw new NotImplementedException(); }
public void GetById(int id) { DTOProducto dtoper = producto.GetById(1); Console.WriteLine(dtoper.Nombre); }