/// <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)); }
/// <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)); }