示例#1
0
 public AccountController(CLRCP_MASTERContext context, IUserRepository userService, IOptions <AppSettings> appSettings, JsonResponse jsonResponse)
 {
     _masterContext    = context;
     _userRepo         = userService;
     this.jsonResponse = jsonResponse;
     _appSettings      = appSettings.Value;
 }
 public MasterController(CLRCP_MASTERContext context,
                         TEXTContext textContext,
                         JsonResponse jsonResponse)
 {
     _context          = context;
     _textContext      = textContext;
     this.jsonResponse = jsonResponse;
 }
示例#3
0
 public MasterController(CLRCP_MASTERContext context,
                         TEXTContext textContext,
                         JsonResponse JsonResponse,
                         IMAGEContext iMAGEContext)
 {
     _CLRCP_MASTERContext = context;
     _TEXTContext         = textContext;
     jsonResponse         = JsonResponse;
     _IMAGEContext        = iMAGEContext;
 }
示例#4
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;
 }
示例#5
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;
 }
示例#6
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;
 }
 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;
 }
示例#8
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;
 }
示例#9
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;
 }
示例#10
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;
 }
示例#11
0
 public UserService(CLRCP_MASTERContext context)
 {
     _masterContext = context;
 }
示例#12
0
 public CommonServices(CLRCP_MASTERContext context)
 {
     _context = context;
 }