public void Alterar(ramo_tb ramo) { using (var ctx = new CTX_GERCOM()) { new API_GESCOM().Alterar <ramo_tb>(string.Concat(API_GESCOM.URL, "/api/ramo/Atualizar/", ramo.ramo_id), ramo); } }
public void Inserir() { ramo = new ramo_tb(); CarregarEntidade(); new RamoRepositorio().Inserir(ramo); }
public void gvRamo_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { ramo_tb obj = ((ramo_tb)e.Row.DataItem); ((HyperLink)e.Row.FindControl("lnkEditar")).NavigateUrl = string.Concat("RamoDetalhe?id=", obj.ramo_id); ((HyperLink)e.Row.FindControl("lnkEditar")).Text = obj.codigo; } }
public void Inserir(ramo_tb ramo) { //new API_GESCOM().Inserir<ramo_tb>(string.Concat(API_GESCOM.URL, "/api/ramo/Incluir"), "ramo", ramo); new API_GESCOM().Inserir <ramo_tb>("/api/ramo/Incluir", ramo); }
public void RecuperarDados() { ramo = new RamoRepositorio().RecuperarPelaChave(Convert.ToInt32(Request["id"])); }