Пример #1
0
        public Boolean GrabarDB(tb_Empresa_Info info)
        {
            try
            {
                tb_Empresa_Data empD = new tb_Empresa_Data();

                return(empD.GrabarDB(info));
            }
            catch (Exception ex)
            {
                Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
                throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "GrabarDB", ex.Message), ex)
                      {
                          EntityType = typeof(tb_Empresa_Bus)
                      };
            }
        }