示例#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;
 }