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

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