public static void ManualStorageInsertion(IPatient _patient, string _path, bool _append = false)
        {
            FileHandler file = new FileHandler(_path);

            file.WriteLine(_patient.SaveEntity(), _append);
        }