public void TestUpdateUserActiveStatusById()
        {
            var status = wheelService.UpdateUserActiveStatusById(false, testUserId);

            Assert.True(status);
        }
Beispiel #2
0
 public bool UpdateUserActiveStatus(bool status, string userId)
 {
     return(_wheelService.UpdateUserActiveStatusById(status, userId));
 }