public void TestUpdateProfile()
        {
            Buyer buyer = _repo.Getprofile("4");

            buyer.Mobile = "9666666666";
            _repo.Editprofile(buyer);
            Buyer buyer1 = _repo.Getprofile("4");

            Assert.AreSame(buyer, buyer1);
        }
        public void TestGetBuyerProfile()
        {
            var result = _repo.Getprofile(4);

            Assert.IsNotNull(result);
        }