public ActionResult GetAllRecords()
        {
            UserAccountClient  uac   = new UserAccountClient();
            List <UserAccount> users = new List <UserAccount>(uac.GetAll());

            return(View());
        }