public LeadMatchStatusDetails()
 {
     areaMatchStatus = AreaMatchStatus.None;
     industryMatchStatus = IndustryMatchStatus.None;
 }
 public ArrayList GetSuppliers(AreaMatchStatus aSta, IndustryMatchStatus iSta)
 {
     return GetSuppliers("", (short)aSta, "", (short)iSta);
 }
 public ArrayList GetSuppliers(string iCode, IndustryMatchStatus iSta)
 {
     return GetSuppliers("", -1, iCode, -1);
 }
 public ArrayList GetSuppliers(IndustryMatchStatus iSta)
 {
     return GetSuppliers("", -1, "", (short)iSta);
 }