コード例 #1
0
        public object GetById(int idTask)
        {
            var task = new TaskModel();

            task = repo.GetById(idTask);
            return(task);
        }