public CommonController(ICommonService commonService, IGivenClassroomService givenClassroomService)
 {
     _commonService         = commonService;
     _givenClassroomService = givenClassroomService;
 }
 public GivenClassroomController(IGivenClassroomService givenClassroomService, IMapper mapper)
 {
     _givenClassroomService = givenClassroomService;
     _mapper = mapper;
 }