public void TestGetAllSpins()
        {
            int count = wheelService.GetAllSpins().Count();

            Assert.Equal(2, count);
        }
 public IEnumerable <SpinViewModel> GetAll()
 {
     return(_wheelService.GetAllSpins().Select(TransformModels.ToSpinViewModel));
 }