Ejemplo n.º 1
0
 public DogHistory()
     : base()
 {
     _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
 }
Ejemplo n.º 2
0
 public Dogs(DataRow row)
     : base()
 {
     _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
     init();
     LoadFromRow(row);
 }
Ejemplo n.º 3
0
 public DogGrades()
     : base()
 {
     _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
 }
Ejemplo n.º 4
0
        public Dogs(int DogID)
            : base()
        {
            _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
            init();

            _id = DogID;
            DataSet ds = _dogs.GetDog(_id);
            if (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0 )
                LoadFromRow(ds.Tables[0].Rows[0]);
        }