using Global;
using ModelBasic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTTest
{
///
///
///
public static class IIErrInterface
{
///
///
///
///
///
///
public static IErrHandler GetIErrHandler(this T tt) where T : IIERR
{
return new ErrHandler();
}
}
}