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