public void AddAuthorTest()
 {
     Assert.AreEqual(0, _dataService.GetAllAuthors().Count());
     _dataService.AddAuthor("Jan", "Kowalski");
     Assert.AreEqual(1, _dataService.GetAllAuthors().Count());
 }