コード例 #1
0
ファイル: Program.cs プロジェクト: Dufffyyy/XeroCode
        public List <string> viewList()
        {
            ToDoListBusinessLayer.BusinessLayer db = new ToDoListBusinessLayer.BusinessLayer();
            List <string> ToDoList = db.getToDoList();

            return(ToDoList);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Dufffyyy/XeroCode
        public List <string> addItem(string n)
        {
            ToDoListBusinessLayer.BusinessLayer db = new ToDoListBusinessLayer.BusinessLayer();
            List <string> ToDoList = db.addToList(n);

            return(ToDoList);
        }