Пример #1
0
 public static List <AuthorDto> GetAllAuthors()
 {
     if (authorList == null || authorList.Count == 0)
     {
         authorList = AuthorDao.GetAll();
     }
     return(authorList);
 }