public IList <Funcionario> ListaFuncionarios() { using (var contexto = new SoftnessContext()) { return(contexto.Funcionarios.Include(c => c.Pessoa).Where(a => a.Ativo == true).ToList()); } }
public Cliente Busca(string login, string senha) { using (var soft = new SoftnessContext()) { return(soft.Clientes.Include(f => f.Pessoa).FirstOrDefault(f => f.NomeUsuario == login && f.Senha == senha)); } }
public CategoriaDoProduto BuscaPorId(int id) { using (var contexto = new SoftnessContext()) { return(contexto.Categorias.Find(id)); } }
public Cliente BuscaPorId(int id) { using (var contexto = new SoftnessContext()) { return(contexto.Clientes.Include(p => p.Pessoa).ThenInclude(e => e.Endereco).Where(i => i.Id == id).FirstOrDefault()); } }
public Exercicio BuscaPorId(int id) { using (var contexto = new SoftnessContext()) { return(contexto.Exercicios.Find(id)); } }
public IList <CategoriaDoProduto> Lista() { using (var contexto = new SoftnessContext()) { return(contexto.Categorias.ToList()); } }
public Funcionario Busca(string login, string senha) { using (var contexto = new SoftnessContext()) { return(contexto.Funcionarios.Include(f => f.Pessoa).FirstOrDefault(f => f.NomeDeUsuario == login && f.Senha == senha)); } }
public IList <Cliente> ListaClientes() { using (var contexto = new SoftnessContext()) { return(contexto.Clientes.Include(c => c.Pessoa).Where(a => a.Ativo == true).ToList()); } }
public IList <Exercicio> ListaExercicios() { using (var contexto = new SoftnessContext()) { return(contexto.Exercicios.ToList()); } }
public IList <Produto> Lista() { using (var contexto = new SoftnessContext()) { return(contexto.Produtos.Include("Categoria").ToList()); } }
public Treino BuscaPorId(int id) { using (var contexto = new SoftnessContext()) { return(contexto.Treinos.Find(id)); } }
public IList <Treino> Lista() { using (var contexto = new SoftnessContext()) { return(contexto.Treinos.ToList()); } }
public void Atualiza(Cliente cliente) { using (var contexto = new SoftnessContext()) { contexto.Clientes.Update(cliente); contexto.SaveChanges(); } }
public void Remover(FichaTreino ficha) { using (var context = new SoftnessContext()) { context.FichaTreinos.Remove(ficha); context.SaveChanges(); } }
public void Atualiza(CategoriaDoProduto categoria) { using (var contexto = new SoftnessContext()) { contexto.Entry(categoria).State = EntityState.Modified; contexto.SaveChanges(); } }
public void Atualiza(Funcionario funcionario) { using (var contexto = new SoftnessContext()) { contexto.Funcionarios.Update(funcionario); contexto.SaveChanges(); } }
public void Adiciona(Funcionario funcionario) { using (var context = new SoftnessContext()) { context.Funcionarios.Add(funcionario); context.SaveChanges(); } }
public void Atualiza(Exercicio exercicio) { using (var contexto = new SoftnessContext()) { contexto.Exercicios.Update(exercicio); contexto.SaveChanges(); } }
public void Adiciona(CategoriaDoProduto categoria) { using (var context = new SoftnessContext()) { context.Categorias.Add(categoria); context.SaveChanges(); } }
public void Adiciona(Exercicio exercicio) { using (var context = new SoftnessContext()) { context.Exercicios.Add(exercicio); context.SaveChanges(); } }
public void Adiciona(Treino treino) { using (var context = new SoftnessContext()) { context.Treinos.Add(treino); context.SaveChanges(); } }
public void Adiciona(Cliente cliente) { using (var context = new SoftnessContext()) { context.Clientes.Add(cliente); context.SaveChanges(); } }
public void Atualiza(Produto produto) { using (var contexto = new SoftnessContext()) { contexto.Entry(produto).State = EntityState.Modified; contexto.SaveChanges(); } }
public void Adiciona(Produto produto) { using (var context = new SoftnessContext()) { context.Produtos.Add(produto); context.SaveChanges(); } }
public void Adiciona(FichaTreino ficha) { using (var context = new SoftnessContext()) { context.FichaTreinos.Add(ficha); context.SaveChanges(); } }
public void Remover(Treino treino) { using (var context = new SoftnessContext()) { context.Treinos.Remove(treino); context.SaveChanges(); } }
public void Atualiza(Treino Treinos) { using (var contexto = new SoftnessContext()) { contexto.Entry(Treinos).State = EntityState.Modified; contexto.SaveChanges(); } }
public Produto BuscaPorId(int id) { using (var contexto = new SoftnessContext()) { return(contexto.Produtos.Include("Categoria") .Where(p => p.Id == id) .FirstOrDefault()); } }
public void Remover(int id) { using (var context = new SoftnessContext()) { var exercicio = new ExercicioDAO().BuscaPorId(id); context.Entry(exercicio).State = EntityState.Modified; context.SaveChanges(); } }
public void Remover(int id) { using (var context = new SoftnessContext()) { var cliente = new ClienteDAO().BuscaPorId(id); cliente.Ativo = false; context.Entry(cliente).State = EntityState.Modified; context.SaveChanges(); } }