Пример #1
0
 /// <summary>
 /// Saves a record to the caja chica table.
 /// returns True if value saved successfully else false
 /// Throw exception with message value EXISTS if the data is duplicate
 /// </summary>
 public string[] Crear(MovimientosVentanillaModel balancin)
 {
     return(ADCajaChicaManager.Insert(balancin));
 }
Пример #2
0
 /// <summary>
 /// Saves a record to the caja chica table.
 /// returns True if value saved successfully else false
 /// Throw exception with message value EXISTS if the data is duplicate
 /// </summary>
 public int Crear(CajaChicaModel aCajaChica, int id_user)
 {
     return(ADCajaChicaManager.Insert(aCajaChica, id_user));
 }