Exemplo n.º 1
0
 public static T CreateService <T>(HccRequestContext context) where T : HccServiceBase
 {
     return(Instance.CreateService <T>(context));
 }
Exemplo n.º 2
0
 public static T CreateRepo <T>(HccRequestContext context) where T : class, IRepo
 {
     return(Instance.CreateRepo <T>(context));
 }
Exemplo n.º 3
0
 public static ISocialService CreateSocialService(HccRequestContext context)
 {
     return(Instance.CreateSocialService(context));
 }
Exemplo n.º 4
0
 public static WorkflowFactory CreateWorklflowFactory(HccRequestContext context)
 {
     return(Instance.CreateWorkflowFactory(context));
 }
Exemplo n.º 5
0
 public HotcakesApplication(HccRequestContext hccContext)
 {
     CurrentRequestContext = hccContext;
 }