예제 #1
0
 public SignatureHandler(ICorpAppService service, string appcode) : base(service, appcode)
 {
 }
예제 #2
0
 public FlowFormController(ICorpAppService corpAppService)
 {
     _corpAppService = corpAppService;
 }
예제 #3
0
 public SignatureHandler(ICorpAppService service, int agentId) : base(service, agentId)
 {
 }
예제 #4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="service"></param>
 /// <param name="appcode"></param>
 public BaseService(ICorpAppService service, string appcode)
 {
     _appService = service;
     _appcode    = appcode;
 }
예제 #5
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="service"></param>
 /// <param name="agentId"></param>
 public BaseService(ICorpAppService service, int agentId)
 {
     _appService = service;
     _agentId    = agentId;
 }
예제 #6
0
 public JSSDKHandler(ICorpAppService service, string appcode)
     : base(service, appcode)
 {
 }
예제 #7
0
 public JSSDKHandler(ICorpAppService service, int agentId)
     : base(service, agentId)
 {
 }
예제 #8
0
 public AddressHandler(ICorpAppService service, string appcode) : base(service, appcode)
 {
 }
예제 #9
0
 public AddressHandler(ICorpAppService service, int agentId) : base(service, agentId)
 {
 }
예제 #10
0
 public HomeController(ICorpAppService corpAppService)
 {
     _corpAppService = corpAppService;
 }
예제 #11
0
 public MessageHandler(ICorpAppService service, string appcode)
     : base(service, appcode)
 {
 }
예제 #12
0
 public MessageHandler(ICorpAppService service, int agentId)
     : base(service, agentId)
 {
 }