Ejemplo n.º 1
0
 public void AtribuirEstrutura(EstruturaEntregaControle estruturaEntregaControle)
 {
     this.EntregaAreaID.Valor       = estruturaEntregaControle.EntregaAreaID;
     this.DiasTriagem.Valor         = estruturaEntregaControle.DiasTriagem;
     this.EntregaID.Valor           = estruturaEntregaControle.EntregaID;
     this.Control.ID                = estruturaEntregaControle.ID;
     this.PeriodoID.Valor           = estruturaEntregaControle.PeriodoID;
     this.ProcedimentoEntrega.Valor = estruturaEntregaControle.ProcedimentoEntrega;
     this.QuantidadeEntregas.Valor  = estruturaEntregaControle.QuantidadeEntregas;
     this.Valor.Valor               = estruturaEntregaControle.Valor;
 }
Ejemplo n.º 2
0
 public void Inserir(EstruturaEntregaControle estruturaEntregaControle)
 {
     this.AtribuirEstrutura(estruturaEntregaControle);
     this.Inserir();
     foreach (int dia in estruturaEntregaControle.ListaDiasDaSemana)
     {
         DiasSemana dS = new DiasSemana();
         dS.DiaDaSemana.Valor       = dia;
         dS.ControleEntregaID.Valor = this.Control.ID;
         dS.Inserir();
     }
 }
Ejemplo n.º 3
0
 public void Atualizar(EstruturaEntregaControle estruturaEntregaControle)
 {
     this.AtribuirEstrutura(estruturaEntregaControle);
     this.Atualizar();
 }