public int Edit([FromBody] VoterRoll voter)
 {
     return(objVoter.UpdateVoter(voter));
 }
 public int Create([FromBody] VoterRoll voter)
 {
     return(objVoter.AddVoter(voter));
 }