public MiddleServiceRequest(string AppName, string ApiUsername, string ApiPassword, string SecretKey, string UserId = "")
 {
     this.AppName     = AppName;
     this.ApiUsername = ApiUsername;
     this.ApiPassword = ApiPassword;
     this.SecretKey   = SecretKey;
     this.UserId      = UserId;
     _log             = new ApiLogBusiness();
 }
예제 #2
0
 public LogController(IActivityLogBusiness log, IAccessLogBusiness access, IApiLogBusiness api)
 {
     _log    = log;
     _access = access;
     _api    = api;
 }
 public LoadBalanceController(IWalletUserBusiness walletUser)
 {
     _walletUser = walletUser;
     _iLoad      = new LoadBalanceBusiness();
     _apiLog     = new ApiLogBusiness();
 }