Beispiel #1
0
 public ItemController(ICosmosDbService cosmosDbService,
                       ILogger <ItemController> logger)
 {
     _cosmosDbService = cosmosDbService;
     _logger          = logger;
 }
Beispiel #2
0
 public RecipeController(ICosmosDbService cosmosDbService, UserManager <IdentityUser> userMgr)
 {
     _cosmosDbService = cosmosDbService;
     _userMangager    = userMgr;
 }
Beispiel #3
0
 public IssuingAuthorityRepository(ICosmosDbService <IssuingAuthority> cosmosDbService)
 {
     this.cosmosDbService = cosmosDbService;
 }
Beispiel #4
0
 public CustomClassModel(
     ICosmosDbService cosmosDbService)
 {
     this.cosmosDbService = cosmosDbService;
 }
 public CoreController(CosmosClient cosmosClient, string containerName)
 {
     _cosmosDbService = new CosmosDbService <TEntity>(cosmosClient, _databaseName, containerName);
 }
 public CreateContactCommandHandler(IMapper mapper, ICosmosDbService cosmosDbService)
 {
     _mapper          = mapper;
     _cosmosDbService = cosmosDbService;
 }
Beispiel #7
0
 public UrlController(ILogger <UrlController> logger, ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
     _logger          = logger;
 }
Beispiel #8
0
 public VehicleController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
 public ProfilesController(ICosmosDbService <ProfileMaster, string> service)
 {
     this.service = service;
 }
Beispiel #10
0
 public CreateModel(ILogger <CreateModel> logger, ICosmosDbService rep)
 {
     _logger = logger;
     _rep    = rep;
 }
 public ItemsController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService ?? throw new ArgumentNullException(nameof(cosmosDbService));
 }
Beispiel #12
0
 public ClientService(ICosmosDbService<ClientData> cosmosDbServiceClient)
 {
     _cosmosDbServiceClient = cosmosDbServiceClient;
 }
 public GetAllUsersQueryHandler(ICosmosDbService ACosmosDbService)
 {
     FCosmosDbService = ACosmosDbService;
 }
Beispiel #14
0
 public GetStatistics(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
 public SuperHeroesController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
 public AddNewArticleCommandHandler(ICosmosDbService ACosmosDbService)
 {
     FCosmosDbService = ACosmosDbService;
 }
 public VoterBoxController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
Beispiel #18
0
 public GetOrderByIdQueryHandler(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
Beispiel #19
0
 public AuthenticationController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
Beispiel #20
0
 public ListChakras5Model(ICosmosDbService cosmosDbService)
 {
     this.cosmosDbService = cosmosDbService;
 }
Beispiel #21
0
 public GetSingleArticleQueryHandler(ICosmosDbService ACosmosDbService)
 {
     FCosmosDbService = ACosmosDbService;
 }
 public ExistingInvestmentController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
Beispiel #23
0
 public UserController(IUserRepository repository, IMapper mapper, ICosmosDbService cosmosDbService)
 {
     _repo            = repository;
     _mapper          = mapper;
     _cosmosDbService = cosmosDbService;
 }
Beispiel #24
0
 public GetAllSubscribersQueryHandler(ICosmosDbService ACosmosDbService)
 {
     FCosmosDbService = ACosmosDbService;
 }
 public GetSingleSubscriberQueryHandler(ICosmosDbService ACosmosDbService)
 {
     FCosmosDbService = ACosmosDbService;
 }
Beispiel #26
0
 public TaskDetailMessage(IConnectGroupService connectGroupService, IConnectUserService connectUserService, IConnectRequestService connectRequestService, IOptions <EmailConfig> eMailConfig, ICosmosDbService cosmosDbService)
 {
     _connectGroupService   = connectGroupService;
     _connectUserService    = connectUserService;
     _connectRequestService = connectRequestService;
     _emailConfig           = eMailConfig;
     _cosmosDbService       = cosmosDbService;
     _sendMessageRequests   = new List <SendMessageRequest>();
 }
Beispiel #27
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 public LineBotController(IOptions <AppSettings> options, ICosmosDbService cosmosDbService)
 {
     this.appSettings     = options.Value;
     lineMessaingClient   = new LineMessagingClient(this.appSettings.LineSettings.ChannelAccessToken);
     this.cosmosDbService = cosmosDbService;
 }
Beispiel #28
0
 public MyItemController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
 public CosmosController(ICosmosDbService cosmosDbService)
 {
     _cosmosDbService = cosmosDbService;
 }
Beispiel #30
0
 public CustomFunction(ILog log, ICosmosDbService cosmosDbService)
 {
     this.log             = log;
     this.cosmosDbService = cosmosDbService;
 }