public void Add()
        {
            //Act
            checkingAccountService.Add(checkingAccountMock);

            //Assert
            checkingAccountRepository.Received().Add(checkingAccountMock);
        }