public ItemController(ICosmosDbService cosmosDbService, ILogger <ItemController> logger) { _cosmosDbService = cosmosDbService; _logger = logger; }
public RecipeController(ICosmosDbService cosmosDbService, UserManager <IdentityUser> userMgr) { _cosmosDbService = cosmosDbService; _userMangager = userMgr; }
public IssuingAuthorityRepository(ICosmosDbService <IssuingAuthority> cosmosDbService) { this.cosmosDbService = cosmosDbService; }
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; }
public UrlController(ILogger <UrlController> logger, ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; _logger = logger; }
public VehicleController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public ProfilesController(ICosmosDbService <ProfileMaster, string> service) { this.service = service; }
public CreateModel(ILogger <CreateModel> logger, ICosmosDbService rep) { _logger = logger; _rep = rep; }
public ItemsController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService ?? throw new ArgumentNullException(nameof(cosmosDbService)); }
public ClientService(ICosmosDbService<ClientData> cosmosDbServiceClient) { _cosmosDbServiceClient = cosmosDbServiceClient; }
public GetAllUsersQueryHandler(ICosmosDbService ACosmosDbService) { FCosmosDbService = ACosmosDbService; }
public GetStatistics(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public SuperHeroesController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public AddNewArticleCommandHandler(ICosmosDbService ACosmosDbService) { FCosmosDbService = ACosmosDbService; }
public VoterBoxController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public GetOrderByIdQueryHandler(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public AuthenticationController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public ListChakras5Model(ICosmosDbService cosmosDbService) { this.cosmosDbService = cosmosDbService; }
public GetSingleArticleQueryHandler(ICosmosDbService ACosmosDbService) { FCosmosDbService = ACosmosDbService; }
public ExistingInvestmentController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public UserController(IUserRepository repository, IMapper mapper, ICosmosDbService cosmosDbService) { _repo = repository; _mapper = mapper; _cosmosDbService = cosmosDbService; }
public GetAllSubscribersQueryHandler(ICosmosDbService ACosmosDbService) { FCosmosDbService = ACosmosDbService; }
public GetSingleSubscriberQueryHandler(ICosmosDbService ACosmosDbService) { FCosmosDbService = ACosmosDbService; }
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>(); }
/// <summary> /// コンストラクタ /// </summary> public LineBotController(IOptions <AppSettings> options, ICosmosDbService cosmosDbService) { this.appSettings = options.Value; lineMessaingClient = new LineMessagingClient(this.appSettings.LineSettings.ChannelAccessToken); this.cosmosDbService = cosmosDbService; }
public MyItemController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public CosmosController(ICosmosDbService cosmosDbService) { _cosmosDbService = cosmosDbService; }
public CustomFunction(ILog log, ICosmosDbService cosmosDbService) { this.log = log; this.cosmosDbService = cosmosDbService; }