//Copy Constructor public PartnerClass(PartnerClass right) { this.CPartnerID = right.CPartnerID; this.CPartnetType = right.CPartnetType; this.CName = right.CName; this.CPhone = right.CPhone; this.CAlternativePhone = right.CAlternativePhone; this.CFaxNumber = right.CFaxNumber; this.CEmail = right.CEmail; this.CAlternativeEmail = right.CAlternativeEmail; this.CSuiteNumber = right.CSuiteNumber; this.CStreetNumber = right.CStreetNumber; this.CStreetName = right.CStreetName; this.CCity = right.CCity; this.CProvince = right.CProvince; this.CPostalCode = right.CPostalCode; this.CMSSQLObj = right.CMSSQLObj; this.CMSAccessObj = right.CMSAccessObj; this.CWhichDB = right.CWhichDB; }
//Copy Constructor public MSAccessClass(MSAccessClass right) { this.CProvider = right.CProvider; this.CPathFile = right.CPathFile; this.CAccessStr = right.CAccessStr; }