public void TestDAOForClientFindby()
        {
            IClientRepository client = new DummyDAOForClient();

            CollectionAssert.AreEqual(new List <Client> {
                Storage.Clients[2]
            }, client.FindBy(null, "Plemon", null));
        }
 public void TestDAOForClientFindby()
 {
     IClientRepository client = new DummyDAOForClient();
     CollectionAssert.AreEqual(new List<Client> {Storage.Clients[2]}, client.FindBy(null, "Plemon", null));
 }