/// <summary> /// Deprecated Method for adding a new object to the Funcionarios EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToFuncionarios(Funcionario funcionario) { base.AddObject("Funcionarios", funcionario); }
/// <summary> /// Create a new Funcionario object. /// </summary> /// <param name="cargos_Id">Initial value of the Cargos_Id property.</param> /// <param name="cidades_Estados_Id">Initial value of the Cidades_Estados_Id property.</param> /// <param name="cidades_Id">Initial value of the Cidades_Id property.</param> /// <param name="id">Initial value of the Id property.</param> /// <param name="matricula">Initial value of the Matricula property.</param> /// <param name="nome">Initial value of the Nome property.</param> /// <param name="perfis_Id">Initial value of the Perfis_Id property.</param> /// <param name="setores_Id">Initial value of the Setores_Id property.</param> /// <param name="unidades_Id">Initial value of the Unidades_Id property.</param> public static Funcionario CreateFuncionario(global::System.Int64 cargos_Id, global::System.Int64 cidades_Estados_Id, global::System.Int64 cidades_Id, global::System.Int64 id, global::System.String matricula, global::System.String nome, global::System.Int64 perfis_Id, global::System.Int64 setores_Id, global::System.Int64 unidades_Id) { Funcionario funcionario = new Funcionario(); funcionario.Cargos_Id = cargos_Id; funcionario.Cidades_Estados_Id = cidades_Estados_Id; funcionario.Cidades_Id = cidades_Id; funcionario.Id = id; funcionario.Matricula = matricula; funcionario.Nome = nome; funcionario.Perfis_Id = perfis_Id; funcionario.Setores_Id = setores_Id; funcionario.Unidades_Id = unidades_Id; return funcionario; }