public int SalvarServicoPagamento(ServicoPagamento servicoPagamento) { _sGMContext.ServicoPagamento.Add(servicoPagamento); _sGMContext.SaveChanges(); return(servicoPagamento.ServicoPagamentoId); }
public void AtualizarServicoPagamento(ServicoPagamento servicoPagamento) { _sGMContext.ServicoPagamento.Update(servicoPagamento); _sGMContext.SaveChanges(); }
public PagamentoController() { servicoPagamento = new ServicoPagamento(); }