public async Task <ImgProdutos> Post(ImgProdutos produtosImagens)
        {
            await context.ImgProdutos.AddAsync(produtosImagens);

            await context.SaveChangesAsync();

            return(produtosImagens);
        }
Пример #2
0
 public async Task <ActionResult <ImgProdutos> > Post(ImgProdutos produtosImagens)
 {
 }
 public async Task <ImgProdutos> Delete(ImgProdutos produtosImagensDel)
 {
     throw new System.NotImplementedException();
 }