Esempio n. 1
0
 public static ReaderComment GetReaderCommentByReaderName(string readerName)
 {
     return(ReaderCommentService.GetReaderCommentByReaderName(readerName));
 }
Esempio n. 2
0
 public static IList <ReaderComment> GetAllReaderComments()
 {
     return(ReaderCommentService.GetAllReaderComments());
 }
Esempio n. 3
0
 public static void ModifyReaderComment(ReaderComment readerComment)
 {
     ReaderCommentService.ModifyReaderComment(readerComment);
 }
Esempio n. 4
0
 public static void DeleteReaderCommentById(string readerName)
 {
     ReaderCommentService.DeleteReaderCommentById(readerName);
 }
Esempio n. 5
0
 public static void DeleteReaderComment(ReaderComment readerComment)
 {
     ReaderCommentService.DeleteReaderComment(readerComment);
 }
Esempio n. 6
0
 public static ReaderComment AddReaderComment(ReaderComment readerComment)
 {
     return(ReaderCommentService.AddReaderComment(readerComment));
 }