public static RestauranteContexto Instance() { if (_instanciaContexto == null) { _instanciaContexto = new RestauranteContexto(); } return(_instanciaContexto); }
public RetornoServico Atualizar(T dados) { try { using (RestauranteContexto contexto = ContextoSingleton.Instance()) { return(ObtenhaRetornoServico(true)); } } catch (Exception) { return(ObtenhaRetornoServico(false)); throw; } }
public List <T> Obtenha(string nome) { try { using (RestauranteContexto contexto = ContextoSingleton.Instance()) { return(new List <T>()); } } catch (Exception) { return(new List <T>()); throw; } }
public RetornoServico Excluir(int codigo) { try { using (RestauranteContexto contexto = ContextoSingleton.Instance()) { return(ObtenhaRetornoServico(true)); } } catch (Exception) { return(ObtenhaRetornoServico(false)); throw; } }
public Repositorio() { ioContexto = new RestauranteContexto(); }
public PratoController(RestauranteContexto contexto) { _context = contexto; }