示例#1
0
 // private readonly ILogger Logger = BrEngineContext.Current.Resolve<ILogger>();
 public AC_UserController(IUserLoginLogService userLoginLogService, IAC_UserService ac_UserService, ILogger Logger, IOrderService acOrederService)
 {
     this._userLoginLogService = userLoginLogService;
     this._ac_UserService      = ac_UserService;
     this._Logger          = Logger;
     this._acOrederService = acOrederService;
 }
 public AC_UserManageController(IAC_UserService acUserService, IAC_RoleService acRole,
                                IAC_DepartmentService acDepartment)
 {
     _acUserService       = acUserService;
     _acRoleService       = acRole;
     _acDepartmentService = acDepartment;
 }
示例#3
0
 public UserLoginLogController(IUserLoginLogService userLoginLogService, IAC_UserService ac_UserService)
 {
     this._userLoginLogService = userLoginLogService;
     this._ac_UserService      = ac_UserService;
 }
 public void Init()
 {
     BrEngineContext.Init(null);
     this._dbContext     = BrEngineContext.Current.Resolve <IBcDbContext>();
     this._acUserService = BrEngineContext.Current.Resolve <IAC_UserService>();
 }
 public UserManageController(IAC_UserService acUserService)
 {
     this._acUserService = acUserService;
 }
示例#6
0
 public void Init()
 {
     BrEngineContext.Init(null);
     this._SKU_ProductTypesService = BrEngineContext.Current.Resolve <ISKU_ProductTypesService>();
     this._AC_UserService          = BrEngineContext.Current.Resolve <IAC_UserService>();
 }