Exemplo n.º 1
0
        private ConfigCenterMqTable GetMqTable(Guid storeId)
        {
            var row = _searchService.GetModel("ConfigCenter_MqTable", string.Format("StoreId='{0}'", storeId));

            if (row != null)
            {
                return(_searchService.Format <ConfigCenterMqTable>(row));
            }
            return(null);
        }
Exemplo n.º 2
0
 public virtual TElement Format(DataRow row, DataColumnCollection columns = null)
 {
     return(_searchService.Format <TElement>(row, columns));
 }