Example #1
0
    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();
    }
Example #2
0
 void Initialize()
 {
     Pessoa.Create();
     Fisioterapeuta.Create();
     Paciente.Create();
     Musculo.Create();
     Movimento.Create();
     Sessao.Create();
     Exercicio.Create();
     MovimentoMusculo.Create();
     PontosRotuloPaciente.Create();
     PontosRotuloFisioterapeuta.Create();
 }