public void GetAllUsers_TryRetrievingDataTwice_DalShouldBeHitOnce()
        {
            //Arrange
            _dal.Expect(d => d.GetAllUsers()).Return(GetUsers());

            //Act
            _target.GetAllUsers();
            _target.GetAllUsers();

            //Assert
            _dal.VerifyAllExpectations();
        }