Beispiel #1
0
 public TaxParcel(int pk, string fk_swis, string tpID, string county, string jurisdiction, string _retired)
 {
     pk_taxParcel = pk;
     fk_list_swis = fk_swis;
     taxParcelID  = tpID;
     Swis         = new SWIS(fk_list_swis, county, jurisdiction);
     retired      = _retired;
 }
Beispiel #2
0
 public TaxParcel(int pk, string fk_swis, string tpID, string _note, string sbl, string owner, decimal?acres, string _retired, string county, string jurisdiction)
 {
     pk_taxParcel = pk;
     fk_list_swis = fk_swis;
     taxParcelID  = tpID;
     SBL          = sbl;
     ownerStr_dnd = owner;
     Swis         = new SWIS(fk_list_swis, county, jurisdiction);
     acreage      = acres;
     retired      = _retired;
 }
Beispiel #3
0
 public TaxParcel(int pk, string fk_swis, string tpID, string _note, string sbl, string owner, decimal?acres, string _retired, string county, string jurisdiction,
                  DateTime?crDate, string crBy, DateTime?modDate, string modBy)
 {
     pk_taxParcel = pk;
     fk_list_swis = fk_swis;
     taxParcelID  = tpID;
     note         = _note;
     SBL          = sbl;
     ownerStr_dnd = owner;
     acreage      = acres;
     retired      = _retired;
     Swis         = new SWIS(fk_list_swis, county, jurisdiction);
     created      = crDate;
     created_by   = crBy;
     modified     = modDate;
     modified_by  = modBy;
 }