Ejemplo n.º 1
0
        public Wlpasswd BuildFromRow(DataRow row)
        {
            var returnRecord = Wlpasswd.BuildWlpasswdFromRow(row);

            returnRecord = this.BuildExtraFromRow <Wlpasswd>(returnRecord, row);
            return(returnRecord);
        }
Ejemplo n.º 2
0
        public Wlpasswd Insert(Wlpasswd record)
        {
            DataRow row = this.dataSet.ttblwlpasswd.NewttblwlpasswdRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblwlpasswd.AddttblwlpasswdRow((pdswlpasswdDataSet.ttblwlpasswdRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblwlpasswd.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwlpasswd.Rows[0]) : null);
        }
Ejemplo n.º 3
0
        public Wlpasswd GetByRowId(string rowId, string fldList)
        {
            var      row      = this.GetRowByRowId(rowId, fldList);
            Wlpasswd wlpasswd = null;

            if (row != null)
            {
                wlpasswd = this.BuildFromRow(row);
            }
            return(wlpasswd);
        }
Ejemplo n.º 4
0
        protected Wlpasswd Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var      row      = this.dataSet.ttblwlpasswd.AsEnumerable().SingleOrDefault();
            Wlpasswd wlpasswd = null;

            if (row != null)
            {
                wlpasswd = this.BuildFromRow(row);
            }
            return(wlpasswd);
        }
Ejemplo n.º 5
0
        public void Delete(Wlpasswd record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblwlpasswd.NewttblwlpasswdRow();
                Wlpasswd.BuildMinimalRow(ref row, record);
                this.dataSet.ttblwlpasswd.AddttblwlpasswdRow((pdswlpasswdDataSet.ttblwlpasswdRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Ejemplo n.º 6
0
        public Wlpasswd Update(Wlpasswd record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttblwlpasswd.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwlpasswd.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Ejemplo n.º 7
0
        public Wlpasswd GetTWLSecurity(int batchsize, string fldList)
        {
            var result = new Wlpasswd();

            var where = string.Empty;

            var results = wlpasswdRepository.GetList(where, batchsize, fldList);

            foreach (var row in results)
            {
                result = row;
                if (result != null)
                {
                    break;
                }
            }
            return(result);
        }
Ejemplo n.º 8
0
 public Wlpasswd Update(Wlpasswd record)
 {
     return(this.repository.Update(record));
 }
Ejemplo n.º 9
0
 public Wlpasswd Insert(Wlpasswd record)
 {
     return(this.repository.Insert(record));
 }
Ejemplo n.º 10
0
 public void Delete(Wlpasswd record)
 {
     this.repository.Delete(record);
 }
Ejemplo n.º 11
0
 public void UpdateToRow(ref DataRow row, Wlpasswd record)
 {
     Wlpasswd.UpdateRowFromWlpasswd(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Ejemplo n.º 12
0
 public void Delete(Wlpasswd record)
 {
     this.adapter.Delete(record);
 }
Ejemplo n.º 13
0
 public Wlpasswd Update(Wlpasswd record)
 {
     return(this.adapter.Update(record));
 }
Ejemplo n.º 14
0
 public Wlpasswd Insert(Wlpasswd record)
 {
     return(this.adapter.Insert(record));
 }