示例#1
0
 public SiteController( IUserService userService, IOpenAuthService openAuthService, IBuildLogService bulidLogService, IHomeContentService homecontentservice )
 {
     this.userService = userService;
     this.openAuthService = openAuthService;
     this.bulidLogService = bulidLogService;
     this.homecontentService = homecontentservice;
 }
示例#2
0
 public BuildService(
     BuilderContext context,
     IMapper mapper,
     INotificationsService notificationsService,
     IBuildLogService buildLogService
     ) : base(context, mapper)
 {
     _notificationsService = notificationsService;
     _buildLogService      = buildLogService;
 }
示例#3
0
 public LogsController(IBuildLogService logService)
 {
     _logService = logService;
 }