Exemple #1
0
 public List <Phones> GetPhoneListByUserId(int userId)
 {
     return(_phonesDal.GetList(x => x.UserId == userId && x.Status));
 }
Exemple #2
0
 public List <Phones> GetAll()
 {
     return(_phonesDal.GetList(x => x.Status));
 }