Beispiel #1
0
        public static List <Note> Load(XmlNode inputNode, TaskDataDocument taskDocument)
        {
            var loader = new CommentAllocationLoader(taskDocument);

            return(loader.Load(inputNode.SelectNodes("CAN")));
        }
Beispiel #2
0
 private void LoadCommentAllocations(XmlNode inputNode, LoggedData task)
 {
     task.Notes = CommentAllocationLoader.Load(inputNode, _taskDocument);
 }
 public static List<Note> Load(XmlNode inputNode, TaskDataDocument taskDocument)
 {
     var loader = new CommentAllocationLoader(taskDocument);
     return loader.Load(inputNode.SelectNodes("CAN"));
 }