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