コード例 #1
0
 public ContactPersonController(IContactPersonService contactPersonService, IAppServerService appServerService,
     ICacheManage cacheManage)
 {
     this.contactPersonService = contactPersonService;
     this.appServerService = appServerService;
     this.cacheManage = cacheManage;
 }
コード例 #2
0
 public ContactPersonController(IContactPersonService contactPersonService, IAppServerService appServerService,
                                ICacheManage cacheManage, ICommonFunctions commonFunctions)
 {
     this.contactPersonService = contactPersonService;
     this.appServerService     = appServerService;
     this.cacheManage          = cacheManage;
     this.commonFunctions      = commonFunctions;
 }
コード例 #3
0
 public AppServerController(ICacheManage cacheManage, IAppServerService appServerService)
 {
     this.cacheManage      = cacheManage;
     this.appServerService = appServerService;
 }