Skip to content

Instantly share code, notes, and snippets.

@mario-loza
Created May 2, 2017 21:55
Show Gist options
  • Save mario-loza/a39a57fea791bdc9d1d92b6d4e125e96 to your computer and use it in GitHub Desktop.
Save mario-loza/a39a57fea791bdc9d1d92b6d4e125e96 to your computer and use it in GitHub Desktop.
public static class Operacion
{
public const string ExtensionCredito = "Extension de Credito" ;
public const string Pago = "Pago Hecho" ;
public const string VentaActivo = "Venta de Activos" ;
}
//Asi podemos usar la funcionalidad de esta manera:
if (proceso == Operacion.ExtensionCredito)
{
calcularInteres = true;
}
this.EjecutarCalculoX(Operacion.ExtensionCredito, clientId: 567)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment