//public List<object[]> Claselistamedicamento( // ) //{ // string resultado = ""; // List<object[]> listaresultado = new List<object[]>(); // var Tipoinmu = (from m in _contexto.Tipos_inmu // //join tm in _conju.TipoMedicamento on m.TipoMedicamentoID equals tm.TipoMedicamentoID // select new // { // m.Tipos_inmuId, // m.nombre // }).OrderBy(m => m.nombre).ToList(); // foreach (var item in Tipoinmu) // { // resultado += "<tr>" + // "<td>" + item.nombre + "</td>" + // "<td>" + // "<a class='btn btn-success' data-toggle='modal' data-target='#IngresoTipoinmu' onclick='CargaTipoinmu(" + item.Tipos_inmuId + ")'>Editar</a>" + // "<a class='btn btn-info' data-toggle='modal' data-target='#ImpresionTipoinmu' onclick='CargaParaImpresionTipoinmu();'>Imprimir</a>" + // "<a class= 'btn btn-alert'> Eliminar </td>" + // "</td>" // + "</tr>"; // } // object[] datos = { resultado }; // listaresultado.Add(datos); // return listaresultado; //} public List <IdentityError> ModeloEditarInmueble(string direccion, string nhabitacion, int inmuebleid, int parra, int pro, int tipoinmuId, int costo, Boolean Activo) { List <IdentityError> ListaEditar = new List <IdentityError>(); IdentityError regresa = new IdentityError(); var Inmuebles = new Inmuebles { InmueblesId = inmuebleid, direccion = direccion, N_habitaciones = nhabitacion, Costo = costo, PropietarioId = pro, ParroquiaId = parra, activo = Activo, Tipos_inmuid = tipoinmuId }; try { _contexto.Inmuebles.Update(Inmuebles); _contexto.SaveChanges(); regresa = new IdentityError { Code = "save", Description = "save" }; } catch (Exception ex) { regresa = new IdentityError { Code = ex.Message, Description = ex.Message }; } ListaEditar.Add(regresa); return(ListaEditar); }
public List <IdentityError> ModeloGrabaInmueble(String Direccion, String Nhabitcion, int cos, int Tipo, int Propio, int Parro, Boolean Activo) { List <IdentityError> Lista = new List <IdentityError>(); IdentityError dato = new IdentityError(); var Objetosexo = new Inmuebles { direccion = Direccion, N_habitaciones = Nhabitcion, Costo = cos, Tipos_inmuid = Tipo, PropietarioId = Propio, ParroquiaId = Parro, activo = Activo }; try { _contexto.Inmuebles.Add(Objetosexo); _contexto.SaveChanges(); dato = new IdentityError { Code = "save", Description = "save" }; } catch (Exception ex) { dato = new IdentityError { Code = ex.Message, Description = ex.Message }; } Lista.Add(dato); return(Lista); }