public bool Save(Note_DTO note_dto) { tblNote note = Convert_Note.Convert(note_dto); _dbcontext.tblNotes.Add(note); _dbcontext.SaveChanges(); return(true); }
public IList <Note_DTO> GetAll() { IQueryable <tblNote> tbl_notes = _dbcontext.tblNotes; return(Convert_Note.Convert(tbl_notes.ToList())); }
public Note_DTO GetLastNote(int id) { tblNote tbl_note = _dbcontext.tblNotes.Where(note => note.Id == id).OrderByDescending(order => order.Last_Updated).SingleOrDefault(); return(Convert_Note.Convert(tbl_note)); }
public IList <Note_DTO> Get(string row_id, string table_name) { IQueryable <tblNote> tbl_notes = _dbcontext.tblNotes.Where(notes => notes.Table_Row_Id == row_id && notes.Table_Name == table_name); return(Convert_Note.Convert(tbl_notes.OrderByDescending(order => order.Last_Updated).ToList())); }
public Note_DTO Get(int id) { tblNote tbl_note = _dbcontext.tblNotes.SingleOrDefault(note => note.Id == id); return(Convert_Note.Convert(tbl_note)); }