src/app/modules/sourcing/class/McqForm.ts
        
| constructor(body: string) | 
| body | 
| body:      | 
import * as _ from 'lodash-es';
export class McqOptions {
  constructor(public body: string) {
  }
}
export interface McqData {
  question: string;
  options: Array<McqOptions>;
  answer?: string;
  learningOutcome?: string;
  bloomsLevel?: string;
  maxScore?: number;
}
export interface McqConfig {
  templateId?: string;
  numberOfOptions?: number;
}
export class McqForm {
  public question: string;
  public options: Array<McqOptions>;
  public templateId: string;
  public answer: string;
  public learningOutcome;
  public bloomsLevel;
  public maxScore;
  public numberOfOptions;
  constructor({question, options, answer, learningOutcome, bloomsLevel, maxScore}: McqData, {templateId, numberOfOptions}: McqConfig) {
    this.question = question;
    this.options = options || [];
    this.templateId = templateId;
    this.answer = answer;
    this.learningOutcome = learningOutcome;
    this.bloomsLevel = bloomsLevel;
    this.maxScore = maxScore;
    this.numberOfOptions = numberOfOptions || 2;
    if (!this.options || !this.options.length) {
      _.times(this.numberOfOptions, index => this.options.push(new McqOptions('')));
    }
  }
  addOptions() {
    this.options.push(new McqOptions(''));
  }
  deleteOption(position) {
    this.options.splice(position, 1);
  }
}