public void Test_for_EditPoliticalParty()
        {
            PartyTable partyTable = new PartyTable()
            {
                PartyId   = 1,
                PartyName = "ss",
                PartyPic  = "dd"
            };

            var Result         = _AdminServices.EditPoliticalParty(partyTable);
            var GetDevelopment = _AdminServices.GetPoliticalParty(partyTable);

            Assert.Equal(GetDevelopment, Result);
        }