public async Task <IEnumerable <User> > GetAll()
        {
            _httpMethods = new HttpMethods();
            var users = await _httpMethods.GET <List <User> >(); //APIRootAddress.Root, "GetMachine"

            return(users);
        }