public static void AgregarExistencias(string idProducto, int existenciasParaAgregar, string usuarioResponsable) { if (existenciasParaAgregar < 0) { throw new Exception("No puede agregar existencias negativas"); } if (existenciasParaAgregar == 0)//si manda a agregar 0 existencias no hacer nada (terminar) { return; } if (string.IsNullOrWhiteSpace(usuarioResponsable)) { throw new Exception("Debe haber un usuario responsable"); } if (string.IsNullOrWhiteSpace(idProducto)) { throw new Exception("Debe de haber un IdProducto válido"); } ProductoDAL.AgregarExistencia(idProducto, existenciasParaAgregar, usuarioResponsable); }