Ejemplo n.º 1
0
        public async Task <IActionResult> SearchValue(string id, string keyword, bool?isActive, int page = 1, int pageSize = 20)
        {
            var result = await _attributeValueService.Search(CurrentUser.TenantId, id, CultureInfo.CurrentCulture.Name,
                                                             keyword, isActive, page, pageSize);

            return(Ok(result));
        }
Ejemplo n.º 2
0
        public async Task <IActionResult> Search([FromBody] SmartTableParam param)
        {
            var AttributeValues = await _attributeValueService.Search(param);

            return(Ok(AttributeValues));
        }