Exemplo n.º 1
0
 public List <DC_keyword_alias> SearchKeywordAlias(DC_Keyword_RQ RQ)
 {
     using (BusinessLayer.BL_Masters obj = new BL_Masters())
     {
         return(obj.SearchKeywordAlias(RQ));
     }
 }
Exemplo n.º 2
0
 public List <DC_keyword_alias> SearchKeywordAlias(DC_Keyword_RQ RQ)
 {
     using (DataLayer.DL_Masters obj = new DataLayer.DL_Masters())
     {
         return(obj.SearchKeywordAlias(RQ));
     }
 }
Exemplo n.º 3
0
        public List <DC_keyword_alias> SearchKeywordAlias(DC_Keyword_RQ RQ)
        {
            object result = null;

            ServiceConnection.MDMSvcProxy.PostData(ConfigurationManager.AppSettings["KeywordAlias_Get"], RQ, typeof(DC_Keyword_RQ), typeof(List <DC_keyword_alias>), out result);
            return(result as List <DC_keyword_alias>);
        }