步步为盈
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.

18 lines
459 B

3 years ago
using Yitter.IdGenerator;
namespace BBWY.Server.Business
{
public class BaseBusiness
{
protected IFreeSql fsql;
protected NLogManager nLogManager;
3 years ago
protected IIdGenerator idGenerator;
public BaseBusiness(IFreeSql fsql, NLogManager nLogManager, IIdGenerator idGenerator)
3 years ago
{
this.fsql = fsql;
this.nLogManager = nLogManager;
3 years ago
this.idGenerator = idGenerator;
}
}
}