public List <string> TextReader(string filepath, string fileName)
 {
     textReadWrite = new TextReadWrite();
     return(textReadWrite.TextFileReader(filepath, fileName));
 }
 public void TextWriter(List <string> inputList, string filepath, string fileName)
 {
     textReadWrite = new TextReadWrite();
     textReadWrite.TextFileWriter(inputList, filepath, fileName);
 }