public int Put(Funcionario funcionario) { var target = GetByCPF(funcionario.Cpf); target.Nome = funcionario.Nome; target.Status = funcionario.Status; _context.Update(target); Save(); return(target.Id); }
public int Put(int id, Projeto projeto) { var target = Get(id); target.Nome = projeto.Nome; target.Detalhe = projeto.Detalhe; target.Status = projeto.Status; _context.Update(target); Save(); return(target.Id); }