protected void BuscarButton_Click(object sender, EventArgs e) { RepositorioDeposito repositorio = new RepositorioDeposito(); var deposito = repositorio.Buscar(Utilitarios.Utils.ToInt(depositoIdTextBox.Text)); if (deposito != null) { LlenarCampos(deposito); Utils.ShowToastr(this, "Busqueda exitosa", "Exito", "success"); } else { Limpiar(); Utils.ShowToastr(this, "No Hay Resultado", "Error", "error"); } }
protected void EliminarLinkButton_Click(object sender, EventArgs e) { RepositorioDeposito rep = new RepositorioDeposito(); Depositos d = rep.Buscar(ToInt(IdTextBox.Text)); if (d != null) { if (rep.Eliminar(ToInt(IdTextBox.Text))) { CallModal("Se a Eliminado el deposito"); Limpiar(); } else { CallModal("No se pudo eliminar el deposito"); } } }
protected void GuadarButton_Click(object sender, EventArgs e) { bool paso = false; RepositorioDeposito repositorio = new RepositorioDeposito(); Deposito deposito = new Deposito(); deposito = LlenarClase(); if (deposito.DepositoId == 0) { paso = repositorio.Guardar(deposito); Utils.ShowToastr(this, "Guardado", "Exito", "success"); Limpiar(); } else { RepositorioDeposito repository = new RepositorioDeposito(); int id = Utils.ToInt(depositoIdTextBox.Text); deposito = repository.Buscar(id); if (deposito != null) { paso = repository.Modificar(LlenarClase()); Utils.ShowToastr(this, "Modificado", "Exito", "success"); } else { Utils.ShowToastr(this, "Id no existe", "Error", "error"); } } if (paso) { Limpiar(); } else { Utils.ShowToastr(this, "No se pudo guardar", "Error", "error"); } }
protected void GuardarLinkButton_Click(object sender, EventArgs e) { if (Page.IsValid) { RepositorioDeposito rep = new RepositorioDeposito(); if (ToInt(IdTextBox.Text) == 0) { if (rep.Guardar(LlenaClase())) { CallModal("Se a registrado el deposito"); Limpiar(); } } else { if (rep.Modificar(LlenaClase())) { CallModal("Se no se pudo registrar el deposito"); Limpiar(); } } } }
protected void EliminarButton_Click(object sender, EventArgs e) { RepositorioDeposito repositorio = new RepositorioDeposito(); int id = Utils.ToInt(depositoIdTextBox.Text); var deposito = repositorio.Buscar(id); if (deposito != null) { if (repositorio.Eliminar(id)) { Utils.ShowToastr(this, "Eliminado", "Exito", "success"); Limpiar(); } else { Utils.ShowToastr(this, "No se pudo eliminar", "Error", "error"); } } else { Utils.ShowToastr(this, "No existe", "Error", "error"); } }