You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
659 B
21 lines
659 B
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;
|
|
}
|
|
}
|
|
}
|
|
|