/// <summary> /// Constructor for DataFileController /// </summary> /// <param name="dataController">DataController dependency to pass down</param> /// <param name="workingDirectory">The directory where this object would save or load from</param> public DataFileController(DataController dataController, string workingDirectory) { this.dataController = dataController; directory = workingDirectory; }
ProgramController(DataController dataController, IUserInterface userInterface) { }