public static void Initialize() { superAdm = false; showQrCode = false; choiceAvatar = 1; if (test == false) { path = "URI=file:" + Application.streamingAssetsPath + "/fisiotech.db"; } else { path = "URI=file:" + Application.streamingAssetsPath + "/test_fisiotech.db"; } var directory = path.Substring(9, path.Length - 9); if (!System.IO.File.Exists(directory)) { SqliteConnection.CreateFile(directory); } Pessoa.Create(); Fisioterapeuta.Create(); Paciente.Create(); Musculo.Create(); Movimento.Create(); Sessao.Create(); Exercicio.Create(); MovimentoMusculo.Create(); PontosRotuloPaciente.Create(); PontosRotuloFisioterapeuta.Create(); }
void Initialize() { Pessoa.Create(); Fisioterapeuta.Create(); Paciente.Create(); Musculo.Create(); Movimento.Create(); Sessao.Create(); Exercicio.Create(); MovimentoMusculo.Create(); PontosRotuloPaciente.Create(); PontosRotuloFisioterapeuta.Create(); }