Esempio n. 1
0
        public List <tasks> tasksGetAll()
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksGetAll());
        }
Esempio n. 2
0
        public tasks tasksGetById(int TaskId)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksGetById(TaskId));
        }
Esempio n. 3
0
        public tasks tasksGetByEventsDetectionId(int EventsDetectionId)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksGetById(EventsDetectionId));
        }
Esempio n. 4
0
        public bool tasksDelete(int TaskId)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksDelete(TaskId));
        }
Esempio n. 5
0
        public bool tasksUpdateUser(int TaskId, int UserId)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksUpdateUser(TaskId, UserId));
        }
Esempio n. 6
0
        public bool tasksUpdateStatus(int TaskId, int TaskStatudId)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksUpdateStatus(TaskId, TaskStatudId));
        }
Esempio n. 7
0
        public bool tasksUpdate(tasks tasks)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksUpdate(tasks));
        }
Esempio n. 8
0
        public int tasksAdd(tasks tasks)
        {
            tasksImpl otasksImpl = new tasksImpl();

            return(otasksImpl.tasksAdd(tasks));
        }