16 lines
428 B
C#
16 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.ServiceProxy
|
|
{
|
|
public static class ServiceFacade
|
|
{
|
|
private static readonly Lazy<MikePHPScriptFacade> _MikePHPScriptFacade = new Lazy<MikePHPScriptFacade>(() => new MikePHPScriptFacade());
|
|
|
|
public static MikePHPScriptFacade MikePHPScriptFacade => _MikePHPScriptFacade.Value;
|
|
}
|
|
}
|