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