public DogHistory()
     : base()
 {
     _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
 }
 public Dogs(DataRow row)
     : base()
 {
     _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
     init();
     LoadFromRow(row);
 }
 public DogGrades()
     : base()
 {
     _dogs = new Fpp.WebModules.Data.Dogs(_moduleSettings);
 }
        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]);
        }