예제 #1
0
        public ActionResult <IEnumerable <string> > Get()
        {
            //GetByID
            //var dtoPorId = articuloService.ObtenerPorID(1);

            //Create
            var nuevoDto = articuloService.Crear(new Application.DTO.ArticuloDTO {
                Codigo = "note",
                Nombre = "note 01",
                Precio = 1000
            });


            return(new string[] { "value1", "value2" });
        }