Priya.InfoList.JsonDataRefTypeService.GetDataRefTypeListView C# (CSharp) Method

GetDataRefTypeListView() private method

private GetDataRefTypeListView ( long pageNo, long itemsPerPage, long dataIndex, string templateSuffix ) : JsonObject
pageNo long
itemsPerPage long
dataIndex long
templateSuffix string
return JsonObject
        public JsonObject GetDataRefTypeListView(long pageNo, long itemsPerPage, long dataIndex, string templateSuffix)
        {
            var retMessage = new JsonObject();

            string htmlText = DataRefTypeView.GetListAllItemView(pageNo, itemsPerPage, dataIndex, templateSuffix);
            if (string.IsNullOrEmpty(htmlText) == true) htmlText = " ";
            retMessage.Put("html", htmlText);

            return retMessage;
        }