public QuestionListModel(IExpertQuestionData questionData, IExpertQuestionTypeData typeData, IAccountData accountData) { this.questionData = questionData; this.typeData = typeData; this.accountData = accountData; }
public AddQuestionTypeModel(IExpertQuestionTypeData typeData) { this.typeData = typeData; }
public AskQuestionModel(IExpertQuestionData questionData, IExpertQuestionTypeData typeData, UserManager <UserProfile> userManager) { this.questionData = questionData; this.typeData = typeData; this.userManager = userManager; }