Exemplo n.º 1
0
 public DynamoRecipeService(IDynamoStorageRepository <Recipe> recipeStorage, IDynamoStorageRepository <AppUser> appUserStorage, IDateTimeService dateTimeService)
 {
     _recipeStorage   = recipeStorage;
     _appUserStorage  = appUserStorage;
     _dateTimeService = dateTimeService;
 }
 public GoogleAuthService(IOptions <AppOptions> appOptions, IDateTimeService dateTimeService, IDynamoStorageRepository <AppUser> appUserStorage)
 {
     _appOptions      = appOptions.Value;
     _dateTimeService = dateTimeService;
     _appUserStorage  = appUserStorage;
 }