object IMTRef.GetREGION(ServiceType type, string partner, string division) { try { mtrefdb = new MT_REF_DB(config); var results = mtrefdb.GetREGION(type, partner, division); return(results); } catch { throw new NotImplementedException(); } }
object IMTRef.GetISARECEIVERID(ServiceType type, string partner, string division, string region) { try { mtrefdb = new MT_REF_DB(config); object results = mtrefdb.GetISARECEIVERID(type, partner, division, region); return(results); } catch { throw new NotImplementedException(); } }
object IMTRef.GetPARTNER(ServiceType type) { try { mtrefdb = new MT_REF_DB(config); var results = mtrefdb.GetPARTNER(type); return(results); } catch { throw new NotImplementedException(); } }