Beispiel #1
0
        public bool Eliminar_Clientes(int idempresa, ref string message)
        {
            try
            {
                fa_Cliente_Data data = new fa_Cliente_Data();

                return(data.Eliminar_Clientes(idempresa, ref message));
            }
            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("", "Eliminar_Clientes", ex.Message), ex)
                      {
                          EntityType = typeof(fa_catalogo_tipo_Bus)
                      };
            }
        }