31 lines
604 B
C#
31 lines
604 B
C#
using Global;
|
|
using ModelBasic;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTTest
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static class IIErrInterface
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="tt"></param>
|
|
/// <returns></returns>
|
|
public static IErrHandler<String> GetIErrHandler<T>(this T tt) where T : IIERR
|
|
{
|
|
return new ErrHandler<String>();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|