public async Task <IActionResult> GetMarketSellerById(long id, long sellerId)
 {
     return(Ok(await _sellerService.GetSellerByIdAndMarketId(sellerId, id)));
 }