コード例 #1
0
ファイル: LoginViewModel.cs プロジェクト: jorgecensi/Showcase
        //public LoginViewModel(INavigation nav)
        public LoginViewModel()
        {
            azureService = DependencyService.Get <AzureServices>();
            //navigation = nav;

            //Title = "Social Login";
        }
コード例 #2
0
ファイル: ItemsPage.xaml.cs プロジェクト: Darkobs/ZubalePoC
        public ItemsPage()
        {
            InitializeComponent();
            manager = AzureServices.DefaultManager;

            BindingContext = viewModel = new ItemsViewModel();
        }
コード例 #3
0
        public async Task <List <Cat> > GetCats()
        {
            //List<Cat> cats;

            //var URLApi = "http://demos.ticapacitacion.com/cats";

            //using (var client = new HttpClient())
            //{
            //    var json = await client.GetStringAsync(URLApi);
            //    cats = JsonConvert.DeserializeObject<List<Cat>>(json);
            //}

            //return cats;

            var service = new AzureServices <Cat>();
            var cats    = await service.GetTable();

            return(cats.ToList());
        }
コード例 #4
0
 public MainPageViewModel()
 {
     serv         = new AzureServices();
     LoginCommand = new Command(ExecuteCommandLogin);
 }
コード例 #5
0
 private void Awake()
 {
     // このクラスをシングルトンとしてふるまわせる
     Instance = this;
 }
コード例 #6
0
 private void Awake()
 {
     instance = this;
 }