Esempio n. 1
0
            public static Task Create(Project d, ProjectDOM.Task c)
            {
                if (d == null)
                {
                    throw new ArgumentNullException(nameof(d));
                }
                if (c == null)
                {
                    throw new ArgumentNullException(nameof(c));
                }


                return(new Task(d, c));
            }
Esempio n. 2
0
 private Task(Project d, ProjectDOM.Task c)
 {
     _Parent = d;
     _Source = c;
 }