Exemple #1
0
 public IEnumerable <FollowUp> GetFollowUpsbyExpertId(int id)
 {
     return(FollowUpRepository.GetAll(t => t.ExpertId == id && t.Active == true && t.ExpertReply == null));
 }
Exemple #2
0
 public IEnumerable <FollowUp> GetFollowupsbyUserId(int id)
 {
     return(FollowUpRepository.GetAll(t => t.UserId == id && t.Active == true));
 }
Exemple #3
0
 public IEnumerable <FollowUp> GetFollowUps()
 {
     return(FollowUpRepository.GetAll());
 }