コード例 #1
0
 static GoogleSheetsConnector()
 {
     configuration    = CofigurationContext.Current();
     clientSecretPath =
         Environment.GetEnvironmentVariable(configuration.GoogleSheetSecretVar);
 }
コード例 #2
0
ファイル: PersonRepository.cs プロジェクト: gamu/classmaters
 public PersonRepository(IMapper <IList <object>, Person> personMapper)
 {
     sheetsService     = GoogleSheetsConnector.GetService();
     configuration     = CofigurationContext.Current();
     this.personMapper = personMapper;
 }