public static List <Note> Load(XmlNode inputNode, TaskDataDocument taskDocument) { var loader = new CommentAllocationLoader(taskDocument); return(loader.Load(inputNode.SelectNodes("CAN"))); }
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")); }