示例#1
0
 public FeedbacksController(IFeedbackBusiness FeedbackBusiness)
 {
     this.FeedbackBusiness = FeedbackBusiness;
 }
示例#2
0
 public FeedbackController(ILoggerManager _logger, IMapper _mapper, IFeedbackBusiness _feedbackBusiness)
 {
     this.logger           = _logger;
     this.mapper           = _mapper;
     this.feedbackBusiness = _feedbackBusiness;
 }
 public FeedbackController(IFeedbackBusiness feedbackBusiness)
 {
     _feedbackBusiness = feedbackBusiness;
 }
示例#4
0
 public FeedbackController(IFeedbackBusiness feedback, IUserBusiness user, IOptions <PagingOptions> defaultPagingOptionsWrapper)
 {
     _feedback             = feedback;
     _user                 = user;
     _defaultPagingOptions = defaultPagingOptionsWrapper.Value;
 }
 public FeedbacksController(IFeedbackBusiness FeedbackBusiness, IEgreetingUserBusiness EgreetingUserBusiness, IEcardBusiness EcardBusiness)
 {
     this.FeedbackBusiness      = FeedbackBusiness;
     this.EgreetingUserBusiness = EgreetingUserBusiness;
     this.EcardBusiness         = EcardBusiness;
 }