public PerfilesNegocios Insert(PerfilesNegocios entity) { object[] parameters = new object[] { entity.NegocioId, entity.ImagenPrincipal, entity.Direccion, entity.Telefono, entity.DiasHorario, entity.Horas, entity.Precios, entity.Descripcion }; return(Context.PerfilesNegocios.FromSql("dbo.usp_PerfilesNegociosInsert @NegocioId={0}, @ImagenPrincipal={1}, @Direccion={2}, @Telefono={3}, @DiasHorario={4}, @Horas={5}, @Precios={6}, @Descripcion={7}", parameters).FirstOrDefault()); }
public bool Delete(PerfilesNegocios entity) { object[] parameters = new object[] { entity.NegocioId }; return(Context.Database.ExecuteSqlCommand("dbo.usp_PerfilesNegociosDelete @NegocioId={0}", parameters) == -1 ? true : false); }
public PerfilesNegocios SelectByKey(PerfilesNegocios entity) { object[] parameters = new object[] { entity.NegocioId }; return(Context.PerfilesNegocios.FromSql("dbo.usp_PerfilesNegociosSelect @NegocioId={0}", parameters).FirstOrDefault()); }