Esempio n. 1
0
        private async Task <FullTrail> ExecuteUpdateCommand()
        {
            var res = DbQueryAsync.UpdateOption(_trailId, _option);

            return(res);
        }
Esempio n. 2
0
        protected async Task <User> ExecuteLoginCommand()
        {
            var user = DbQueryAsync.GetToken(username, password);

            return(user);
        }
Esempio n. 3
0
 public OptionPage(string id)
 {
     options        = DbQueryAsync.GetOptions();
     BindingContext = new OptionViewModel(id, options);
     Content        = GenerateOptionLayout();
 }