Beispiel #1
0
 public List <Comment> SelectListByLandLordId(Guid landlordId)
 {
     return(CommentDAO.GetAllByFieldValue("ContextId", landlordId, Enums.ContextType.Landlord));
 }
Beispiel #2
0
 public List <Comment> SelectListByStudentId(Guid studentId)
 {
     return(CommentDAO.GetAllByFieldValue("ContextId", studentId, Enums.ContextType.Student));
 }