Ejemplo n.º 1
0
        public void TestGetAllSpins()
        {
            int count = wheelService.GetAllSpins().Count();

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