Esempio n. 1
0
        protected void BtnEliminar_Click(object sender, EventArgs e)
        {
            int id = Utils.ToInt(VentaIdTextBox.Text);

            var Ventas = RepositorioVentas.Buscar(id);

            if (Ventas != null)
            {
                if (RepositorioVentas.Eliminar(id))
                {
                    Utils.ShowToastr(this, "Eliminado Exitosamente!!", "Exito", "info");
                    LimpiarCampos();
                }
                else
                {
                    Utils.ShowToastr(this, "Fallo!! No se Puede Eliminar", "Error", "error");
                }
            }
            else
            {
                Utils.ShowToastr(this, "No hay datos para eliminar!!", "Error", "error");
            }
            if (Utils.ToInt(VentaIdTextBox.Text) == 0)
            {
                Utils.ShowToastr(this, "Id No Puede Ser Cero", "Error", "error");
            }
        }
Esempio n. 2
0
        public void EliminarTest()
        {
            RepositorioVentas repositorio = new RepositorioVentas();
            bool paso;
            int  id = 1;

            paso = repositorio.Eliminar(id);
            Assert.AreEqual(paso, true);
        }