//Get all of the Hardware
        public IHttpActionResult Get()
        {
            List <AdminHardwareVM> model = _adapter.GetHardware();

            return(Ok(model));
        }