示例#1
0
 public ValidationTextTextController(CLRCP_MASTERContext context,
                                     VALIDATION_INFOContext ValidationInfoContext,
                                     JsonResponse jsonResponse,
                                     TEXTContext textContext,
                                     TextToTextContext textToTextContext)
 {
     _MasterContext         = context;
     _validationInfoContext = ValidationInfoContext;
     _jsonResponse          = jsonResponse;
     _textContext           = textContext;
     _textToTextContext     = textToTextContext;
 }
示例#2
0
 public ValidationTextToSpeechController(CLRCP_MASTERContext context,
                                         TEXTContext TEXTContext,
                                         TextToSpeechContext textToSpeech,
                                         VALIDATION_INFOContext ValidationInfoContext,
                                         JsonResponse jsonResponse)
 {
     _masterContext         = context;
     _TEXTcontext           = TEXTContext;
     _texttoSpeechContext   = textToSpeech;
     _validationInfoContext = ValidationInfoContext;
     _jsonResponse          = jsonResponse;
 }
示例#3
0
 public ValidationImageTextController(CLRCP_MASTERContext context,
                                      VALIDATION_INFOContext ValidationInfoContext,
                                      JsonResponse jsonResponse,
                                      ImageToTextContext imageToTextContext,
                                      IMAGEContext iMAGEContext)
 {
     _masterContext          = context;
     _validationInfoContext  = ValidationInfoContext;
     _jsonResponse           = jsonResponse;
     this.imageToTextContext = imageToTextContext;
     this.iMAGEContext       = iMAGEContext;
 }
示例#4
0
 public DashboardController(CLRCP_MASTERContext context,
                            TEXTContext textContext,
                            TextToSpeechContext textToSpeechContext,
                            IMAGEContext imageContext,
                            ImageToTextContext imageToTextContext,
                            TextToTextContext textToTextContext,
                            VALIDATION_INFOContext VALIDATION_INFOContext)
 {
     _CLRCP_MASTERContext    = context;
     _TEXTContext            = textContext;
     _TextToSpeechContext    = textToSpeechContext;
     _IMAGEContext           = imageContext;
     _ImageToTextContext     = imageToTextContext;
     _TextToTextContext      = textToTextContext;
     _VALIDATION_INFOContext = VALIDATION_INFOContext;
 }
示例#5
0
 public ValidationController(CLRCP_MASTERContext context,
                             TEXTContext TEXTContext,
                             TextToSpeechContext textToSpeech,
                             TextToTextContext textContext,
                             IMAGEContext iMAGEContext,
                             ImageToTextContext imageToTextContext,
                             VALIDATION_INFOContext ValidationInfoContext,
                             JsonResponse jsonResponse)
 {
     this.context            = context;
     _TEXTcontext            = TEXTContext;
     this.textToSpeech       = textToSpeech;
     this.textContext        = textContext;
     this.iMAGEContext       = iMAGEContext;
     this.imageToTextContext = imageToTextContext;
     validationInfoContext   = ValidationInfoContext;
     this.jsonResponse       = jsonResponse;
 }