Ejemplo n.º 1
0
        public ActionResult <Laptop> CreateLaptop(Laptop Laptop)
        {
            Laptop Result = _laptopService.CreateLaptop(Laptop);

            return(Ok(Laptop));
        }