public void TodaySyns() { var user = new User("user"); var todaySyns = 12.5m; ISynsStore synsStore = SynsStore(); synsStore.SetTodaySyns(user, todaySyns); Assert.That(synsStore.GetTodaySyns(user), Is.EqualTo(todaySyns)); }
public Application(IUserService userService, ISynsStore synsStore) { m_UserService = userService; m_SynsStore = synsStore; }