/// <summary> /// Deprecated Method for adding a new object to the design EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTodesign(design design) { base.AddObject("design", design); }
/// <summary> /// Create a new design object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="userId">Initial value of the UserId property.</param> /// <param name="qtdCores">Initial value of the QtdCores property.</param> /// <param name="dataIns">Initial value of the DataIns property.</param> /// <param name="titulo">Initial value of the Titulo property.</param> /// <param name="statusDesign">Initial value of the StatusDesign property.</param> /// <param name="preselecionado">Initial value of the Preselecionado property.</param> /// <param name="desclassificado">Initial value of the Desclassificado property.</param> /// <param name="prearquivado">Initial value of the Prearquivado property.</param> /// <param name="utilizadoTerceiros">Initial value of the UtilizadoTerceiros property.</param> /// <param name="alturaImagem">Initial value of the AlturaImagem property.</param> /// <param name="temImagemAlternativa">Initial value of the TemImagemAlternativa property.</param> public static design Createdesign(global::System.Int32 id, global::System.Int32 userId, global::System.Byte qtdCores, global::System.DateTime dataIns, global::System.String titulo, global::System.String statusDesign, global::System.Byte preselecionado, global::System.Byte desclassificado, global::System.Byte prearquivado, global::System.Byte utilizadoTerceiros, global::System.Int32 alturaImagem, global::System.Byte temImagemAlternativa) { design design = new design(); design.Id = id; design.UserId = userId; design.QtdCores = qtdCores; design.DataIns = dataIns; design.Titulo = titulo; design.StatusDesign = statusDesign; design.Preselecionado = preselecionado; design.Desclassificado = desclassificado; design.Prearquivado = prearquivado; design.UtilizadoTerceiros = utilizadoTerceiros; design.AlturaImagem = alturaImagem; design.TemImagemAlternativa = temImagemAlternativa; return design; }