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(); }
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(); }