Exemplo n.º 1
0
        public ProductType Create(ProductType productType)
        {
            var prodType = _ctx.Add(productType).Entity;

            _ctx.SaveChanges();
            return(prodType);
        }
Exemplo n.º 2
0
        public Product Create(Product product)
        {
            var prod = _ctx.Add(product).Entity;

            _ctx.SaveChanges();
            return(prod);
        }
        public Color Create(Color color)
        {
            var col = _ctx.Add(color).Entity;

            _ctx.SaveChanges();
            return(col);
        }