public async Task <ActionResult> AllBuyer()
        {
            var Buyer = await _service.GetAllBuyerAsync();

            return(View(Buyer));
        }