25 lines
662 B
C#
25 lines
662 B
C#
|
|
using dccdc.DAL;
|
|||
|
|
using dccdc.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class InfectionDaysignQuestionOptionsBll
|
|||
|
|
{
|
|||
|
|
private InfectionDaysignQuestionOptionsDal dal = new InfectionDaysignQuestionOptionsDal();
|
|||
|
|
|
|||
|
|
public List<InfectionDaysignQuestionOptionsModel> getOptionList(int question_id) {
|
|||
|
|
return dal.getOptionList(question_id);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public List<InfectionDaysignQuestionOptionsModel> getRandomOption(int question_id)
|
|||
|
|
{
|
|||
|
|
return dal.getRandomOption(question_id);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|