Esempio n. 1
0
 public void saveEmpresa()
 {
     if (_dataMapper != null)
     {
         _dataMapper.insertElement(new EMPRESA()
         {
             IS_ACTIVE = true, EMPRESA_NAME = this._empresaName, DIRECCION = this._direccion, RAZON_SOCIAL = this._razonSocial, RFC = this._rfc
         }, this.ActualUser);
     }
 }