コード例 #1
0
 public QuestionListModel(IExpertQuestionData questionData, IExpertQuestionTypeData typeData, IAccountData accountData)
 {
     this.questionData = questionData;
     this.typeData     = typeData;
     this.accountData  = accountData;
 }
コード例 #2
0
 public AddQuestionTypeModel(IExpertQuestionTypeData typeData)
 {
     this.typeData = typeData;
 }
コード例 #3
0
 public AskQuestionModel(IExpertQuestionData questionData, IExpertQuestionTypeData typeData, UserManager <UserProfile> userManager)
 {
     this.questionData = questionData;
     this.typeData     = typeData;
     this.userManager  = userManager;
 }