Esempio n. 1
0
 public void Delete(int Id)
 {
     using (Context = new Contexto())
     {
         string Query = string.Format("DELETE FROM admins WHERE adminId={0}", Id);
         Context.executaComando(Query);
     }
 }
Esempio n. 2
0
        public void Update(Admin admin)
        {
            string Query = "UPDATE Admin SET ";

            Query += string.Format("Nome='{0}', Nascimento='{1}', Usuario='{2}', PassWord= WHERE adminId={3}", admin.Nome, admin.Mae, admin.Nascimento, admin.adminId);

            using (Context = new Contexto())
            {
                Context.executaComando(Query);
            }
        }
Esempio n. 3
0
        public void Update(Aluno aluno)
        {
            string Query = "UPDATE Alunos SET ";

            Query += string.Format("Nome='{0}', Mae='{1}', Nascimento='{2}' WHERE AlunoId={3}", aluno.Nome, aluno.Mae, aluno.Nascimento, aluno.AlunoId);

            using (Context = new Contexto())
            {
                Context.executaComando(Query);
            }
        }
Esempio n. 4
0
        public void Insert(Admin admin)
        {
            string Query = "INSERT INTO Admin (Nome,Nascimento,Usuario,PassWord) ";

            Query += string.Format("values ('{0}','{1}','{2}','{3}')", admin.Nome, admin.Nascimento, admin.Usuario, admin.PassWord);

            using (Context = new Contexto())
            {
                Context.executaComando(Query);
            }
        }
Esempio n. 5
0
        public void Insert(Aluno aluno)
        {
            string Query = "INSERT INTO Alunos (Nome,Mae,Nascimento) ";

            Query += string.Format("values ('{0}','{1}','{2}')", aluno.Nome, aluno.Mae, aluno.Nascimento);

            using (Context = new Contexto())
            {
                Context.executaComando(Query);
            }
        }