コード例 #1
0
        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);
        }
コード例 #2
0
 public bool Insert(DTOProducto x)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public bool Edit(DTOProducto id)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
ファイル: BProducto.cs プロジェクト: edsonbryan/SVS-Samples
        public void GetById(int id)
        {
            DTOProducto dtoper = producto.GetById(1);

            Console.WriteLine(dtoper.Nombre);
        }