internal static IEnumerable <InterestModel> GetUserInterests(int userId)
 {
     return(InterestRepository.GetUserInterests(userId));
 }
 public List <TRS_Domain.INTEREST.Data> GetAllUsertInterests(int userId)
 {
     return(_interestRepo.GetUserInterests(userId));
 }