示例#1
0
 public MasterController(CLRCP_MASTERContext context,
                         TEXTContext textContext,
                         JsonResponse JsonResponse,
                         IMAGEContext iMAGEContext)
 {
     _CLRCP_MASTERContext = context;
     _TEXTContext         = textContext;
     jsonResponse         = JsonResponse;
     _IMAGEContext        = iMAGEContext;
 }
示例#2
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;
 }
 public DashboardController(CLRCP_MASTERContext context,
                            TEXTContext textContext, 
                            TextToSpeechContext textToSpeechContext,
                            IMAGEContext imageContext, 
                            ImageToTextContext imageToTextContext,
                            TextToTextContext textToTextContext, 
                            IOptions<AppSettings> appSettings)
 {
     _context = context;
     _textContext = textContext;
     _textToSpeechContext = textToSpeechContext;
     _imageContext = imageContext;
     _imageToTextContext = imageToTextContext;
     _textToTextContext = textToTextContext;
 }
示例#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 ProcessController(CLRCP_MASTERContext context,
                          TEXTContext TEXTContext,
                          TextToSpeechContext textToSpeech,
                          TextToTextContext textContext,
                          IMAGEContext iMAGEContext,
                          ImageToTextContext imageToTextContext,
                          JsonResponse jsonResponse)
 {
     _context                = context;
     _TEXTContext            = TEXTContext;
     TextToSpeech            = textToSpeech;
     this.textContext        = textContext;
     this.iMAGEContext       = iMAGEContext;
     this.imageToTextContext = imageToTextContext;
     this.jsonResponse       = jsonResponse;
 }
示例#6
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;
 }