Esempio n. 1
0
        public bool Save(Note_DTO note_dto)
        {
            tblNote note = Convert_Note.Convert(note_dto);

            _dbcontext.tblNotes.Add(note);
            _dbcontext.SaveChanges();
            return(true);
        }
Esempio n. 2
0
        public IList <Note_DTO> GetAll()
        {
            IQueryable <tblNote> tbl_notes = _dbcontext.tblNotes;

            return(Convert_Note.Convert(tbl_notes.ToList()));
        }
Esempio n. 3
0
        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));
        }
Esempio n. 4
0
        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()));
        }
Esempio n. 5
0
        public Note_DTO Get(int id)
        {
            tblNote tbl_note = _dbcontext.tblNotes.SingleOrDefault(note => note.Id == id);

            return(Convert_Note.Convert(tbl_note));
        }