Пример #1
0
        public static async void GetAllUsers()
        {
            //oldDB http://stationlogwebapplication120180426012243.azurewebsites.net
            //newDB http://stationlogsystemwebapplication20180521105958.azurewebsites.net

            WebAPIAsync <User> UserWebAPI = new WebAPIAsync <User>("http://stationlogsystemwebapplication20180521105958.azurewebsites.net", "api", "Users");

            try
            {
                var users = await UserWebAPI.Load();

                if (users != null)
                {
                    foreach (var user in users)
                    {
                        UserListToCheck.Add(user);
                    }
                }
            }
            catch (Exception e)
            {
                throw e;
            }
        }
Пример #2
0
 public static async void RegisterUser(User newUser)
 {
     WebAPIAsync <User> UserWebAPI = new WebAPIAsync <User>("http://stationlogwebapplication120180426012243.azurewebsites.net", "api", "Users");
     // WebApi.create(); has been changed to accepte only 1 argument instead of 2 ..
     //await UserWebAPI.Create(newUser.UserId, newUser);
 }