public bool addUser(UserAccess model)
        {
            bool updated = false;

            try
            {
                context.UserAccesses.Add(model);
                context.SaveChanges();
                updated = true;
            }
            catch (Exception ex)
            {
                updated = false;
            }

            return(updated);
        }