Example #1
0
 public static void Apagar(int Identificador)
 {
     using (TestePraticoDataContext dtc = new TestePraticoDataContext())
     {
         dtc.ExecuteCommand($"Delete Endereco where identificador ={Identificador}");
     }
 }
Example #2
0
 public static void ApagarClienteLoja(int IdLoja, int IdCliente)
 {
     using (TestePraticoDataContext dtc = new TestePraticoDataContext())
     {
         dtc.ExecuteCommand($"Delete Loja_has_Cliente where IdentificadorLoja = {IdLoja} and IdentificadorCliente = {IdCliente}");
     }
 }
Example #3
0
 public static void IncluirClienteLoja(int IdLoja, int IdCliente)
 {
     using (TestePraticoDataContext dtc = new TestePraticoDataContext())
     {
         dtc.ExecuteCommand($"Insert into Loja_has_Cliente (IdentificadorLoja, IdentificadorCliente) Values ({IdLoja} ,{IdCliente})");
     }
 }
Example #4
0
        public static void Inserir(Endereco endereco)
        {
            using (TestePraticoDataContext dtc = new TestePraticoDataContext())
            {
                dtc.ExecuteCommand($@"insert into Endereco (IdentificadorCliente, Logradouro, Numero, Complemento, Cidade, Uf,CEP)
Values ({endereco.IdentificadorCliente}, '{endereco.Logradouro}', '{endereco.Numero}', '{endereco.Complemento}','{endereco.Cidade}', '{endereco.UF}','{endereco.CEP}')");
            }
        }
Example #5
0
        public static void Alterar(Endereco endereco)
        {
            using (TestePraticoDataContext dtc = new TestePraticoDataContext())
            {
                dtc.ExecuteCommand($@"UPDATE       Endereco
SET                IdentificadorCliente = {endereco.IdentificadorCliente}, Logradouro ='{endereco.Logradouro}', Numero ='{endereco.Numero}', Complemento ='{endereco.Complemento}', Cidade ='{endereco.Cidade}', UF ='{endereco.UF}', CEP ='{endereco.CEP}'
where identificador = {endereco.Identificador}
");
            }
        }