public HttpResponseMessage Get(string name) { var tblestados = EstadosRepository.SearchEstadosByName(name); HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, tblestados); return(response); }
public HttpResponseMessage Get(int id) { var tblestados = EstadosRepository.GetEstado(id); HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, tblestados); return(response); }
public EstadosController() { if (this.repositorio == null) { this.repositorio = new EstadosRepository(); } }
public HttpResponseMessage Get() { var tblestados = EstadosRepository.GetAllEstados(); Console.Write(tblestados.ToString()); HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, tblestados); return(response); }
public ProgramadoresController() { this.EstadosRep = new EstadosRepository(); this.HorariosRep = new HorariosRepository(); this.ListaDeHorarios = new List <HORARIOS>(); this.ProgramadoresRep = new ProgramadoresRepository(); this.banco = new BANCO(); this.BancosRep = new BancosRepository(); this.conta = new CONTAS_BANCARIAS(); this.horarios = new HORARIOS(); this.horarios.ListaDeHorarios = new List <HORARIOS>(); this.TecnologiasRep = new TecnologiasRepository(); this.NivelConhecimentoTecnologias = new NIVEL_DE_CONHECIMENTO(); this.NivelConhecimentoTecnologias.ListaDeNiveisDeConhecimento = new List <NIVEL_DE_CONHECIMENTO>(); }
public EstadosController() { repo = new EstadosRepository("name=FunerariappDbEntities"); }
public EstadosController(ILogger <EstadosController> logger, EstadosRepository repository) { _logger = logger; _repository = repository; }