public GoogleClientController(IGoogleClientService googleClientService) =>
 /// <summary>
 /// Initializes a new instance of the <see cref="ReadGoogleSheetToEntities"/> class.
 /// </summary>
 /// <param name="googleService">The google service.</param>
 public ReadGoogleSheetToEntities(IGoogleClientService googleService)
 {
     _googleService = googleService;
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReadGoogleFileLineDataUseCase"/> class.
 /// </summary>
 /// <param name="googleClientService">The google client service.</param>
 public ReadGoogleFileLineDataUseCase(IGoogleClientService googleClientService)
 {
     _googleClientService = googleClientService;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GetFilesInGoogleDriveUseCase"/> class.
 /// </summary>
 /// <param name="googleClientService">The google client service.</param>
 public GetFilesInGoogleDriveUseCase(IGoogleClientService googleClientService)
 {
     _googleClientService = googleClientService;
 }