1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using HH.WMS.Utils;
|
| namespace HH.WCS.SJML.Bll
| {
| public static class BLLCreator
| {
| public static T Create<T>()
| where T : new()
| {
| var v = ObjectCreator.Create<T>();
| return v;
| }
|
| public static T CreateSingleton<T>()
| where T : class, new()
| {
| var v = ObjectCreator.CreateSingleton<T>();
| return v;
| }
| }
| }
|
|