Ejemplo n.º 1
0
        public AddRecordViewModel(SheetsAPI _GoogleSheetsService)
        {
            GoogleSheetsService = _GoogleSheetsService;

            AvailableSheets = GoogleSheetsService.AvailableSheets;
            Categories      = GoogleSheetsService.GetCategories();


            SelectedSheet = AvailableSheets[0];
        }
Ejemplo n.º 2
0
 public AddRecord(SheetsAPI _GoogleSheetsService)
 {
     BindingContext = new AddRecordViewModel(_GoogleSheetsService);
     InitializeComponent();
 }