Exemplo n.º 1
0
 public List <Note> GetNotesByUser(int userID)
 {
     return(_noteDAL.GetAll().Where(x => x.UserID == userID && x.IsActive).ToList());
 }
Exemplo n.º 2
0
 public List <Note> GetNotesByUser(int userID)
 {
     return(_noteDal.GetAll().Where(a => a.UserID == userID && a.IsActive).ToList());
 }
Exemplo n.º 3
0
 public List <Note> GetNotesByUser(int userID) //belirli bir user'ın note'ları gelsin
 {
     return(_noteDAL.GetAll().Where(a => a.UserID == userID && a.IsActive).ToList());
 }