|
|
@ -83,12 +83,12 @@ namespace EasyBL.WEBAPP.SYS |
|
|
|
/// </summary>
|
|
|
|
/// <param name="i_crm"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public HttpResponseMessage GetExhibitionSubCategoryList(string sLanguageID, string sMainCategoryList) |
|
|
|
public HttpResponseMessage GetExhibitionSubCategoryList(string sLanguageID, string sMainCategoryIDs) |
|
|
|
{ |
|
|
|
RequestMessage i_crm = new RequestMessage(); |
|
|
|
i_crm.ORIGID = ORGID; |
|
|
|
i_crm.DATA.Add("LanguageID", sLanguageID); |
|
|
|
i_crm.DATA.Add("ParentIDs", sMainCategoryList); |
|
|
|
i_crm.DATA.Add("ParentIDs", sMainCategoryIDs); |
|
|
|
|
|
|
|
SuccessResponseMessage srm = null; |
|
|
|
string sError = null; |
|
|
@ -185,12 +185,12 @@ namespace EasyBL.WEBAPP.SYS |
|
|
|
/// </summary>
|
|
|
|
/// <param name="i_crm"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public HttpResponseMessage GetServiceSubCategoryList(string sLanguageID, string sMainCategoryList) |
|
|
|
public HttpResponseMessage GetServiceSubCategoryList(string sLanguageID, string sMainCategoryIDs) |
|
|
|
{ |
|
|
|
RequestMessage i_crm = new RequestMessage(); |
|
|
|
i_crm.ORIGID = ORGID; |
|
|
|
i_crm.DATA.Add("LanguageID", sLanguageID); |
|
|
|
i_crm.DATA.Add("ParentIDs", sMainCategoryList); |
|
|
|
i_crm.DATA.Add("ParentIDs", sMainCategoryIDs); |
|
|
|
|
|
|
|
SuccessResponseMessage srm = null; |
|
|
|
string sError = null; |
|
|
|
xxxxxxxxxx