blob: 7707100ad92950edfecf4603a899094f3fa44171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;
using Tango.FSE.Common;
public static class IFSEViewExtensions
{
public static void Register<T>(this T view) where T : class, IFSEView
{
TangoIOC.Default.Register<T>(view);
}
}
|