📄 isurveyvote.cs
字号:
namespace PowerEasy.IDal.Survey
{
using System;
using System.Collections.Generic;
public interface ISurveyVote
{
bool Add(int surveyId, int questionId, int optionCount);
bool Delete(int surveyId);
bool Delete(string surveyIdList);
bool Delete(int surveyId, int questionId);
bool Delete(int surveyId, string questionIdList);
IList<int> GetQuestionVoteAmountList(int surveyId, int questionId);
bool Vote(int surveyId, int questionId, int optionId);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -