Beispiel #1
0
            public ListasdePreciosRow AddListasdePreciosRow(long IdListadePrecio, string Codigo, string Descripcion, System.DateTime VigenciaDesde, System.DateTime VigenciaHasta, long IdLocal, long IdEmpresa)
            {
                ListasdePreciosRow rowListasdePreciosRow = ((ListasdePreciosRow)(this.NewRow()));

                rowListasdePreciosRow.ItemArray = new object[] {
                    IdListadePrecio,
                    Codigo,
                    Descripcion,
                    VigenciaDesde,
                    VigenciaHasta,
                    IdLocal,
                    IdEmpresa
                };
                this.Rows.Add(rowListasdePreciosRow);
                return(rowListasdePreciosRow);
            }
Beispiel #2
0
 public ListasdePreciosRowChangeEvent(ListasdePreciosRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveListasdePreciosRow(ListasdePreciosRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddListasdePreciosRow(ListasdePreciosRow row)
 {
     this.Rows.Add(row);
 }