using QYMessageCenter.Common.Http; using QYMessageCenter.Common.Log; using Yitter.IdGenerator; namespace BBWYB.Server.Business { public class BaseBusiness { protected IFreeSql fsql; protected NLogManager nLogManager; protected IIdGenerator idGenerator; protected RestApiService restApiService; public BaseBusiness(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator, RestApiService restApiService) { this.fsql = fsql; this.nLogManager = nLogManager; this.idGenerator = idGenerator; this.restApiService = restApiService; } } }