public async Task <IActionResult> CreateBasicAsync([FromBody] CreateBasicModel createBasicModel)
 {
     if (await _product.CreateBasicAsync(createBasicModel))
     {
         return(new OkObjectResult($"{createBasicModel.Destination} Created Successfully"));
     }
     return(new BadRequestObjectResult($"{createBasicModel.Destination} Unable too Create Try   Brand,   Category,    Size,    Tag"));
 }