コード例 #1
0
        public async Task <HttpResponseMessage> GetAllSubCategory(long categoryId)
        {
            ResponseModel response = await _subCategoryService.GetAllSubCategory(categoryId);

            return(Request.CreateResponse(HttpStatusCode.OK, response));
        }