コード例 #1
0
ファイル: SmartNoteBll.cs プロジェクト: gulyu/SmartNote
        public bool DeleteAndInsertAll(List<Note> input, User author)
        {
            DalSmartNote.SmartNoteDal dal = new DalSmartNote.SmartNoteDal();
            bool ret = dal.DeleteAndInsertAll(input, author);

            return ret;
        }
コード例 #2
0
ファイル: SmartNoteBll.cs プロジェクト: gulyu/SmartNote
        public bool InsertNote(Note input)
        {
            DalSmartNote.SmartNoteDal dal = new DalSmartNote.SmartNoteDal();
            bool ret = dal.InsertNote(input);

            return ret;
        }
コード例 #3
0
ファイル: SmartNoteBll.cs プロジェクト: gulyu/SmartNote
        public bool UpdateNote(Note input)
        {
            DalSmartNote.SmartNoteDal dal = new DalSmartNote.SmartNoteDal();
            bool ret = dal.UpdateNote(input);

            return ret;
        }
コード例 #4
0
ファイル: SmartNoteBll.cs プロジェクト: gulyu/SmartNote
        public async Task<List<Note>> GetAllNote(User input)
        {
            DalSmartNote.SmartNoteDal dal = new DalSmartNote.SmartNoteDal();
            List<Note> ret = await dal.GetAllNote(input);

            return ret;
        }