Пример #1
0
        private async void startup()
        {
            communityPostDatabase = new CommunityPostTableDatabaseAzure();
            var details = await communityPostDatabase.GetCp();

            foreach (var detail in details)
            {
                cps.Add(detail);
            }
        }
 public void userpost()
 {
     postDatabase     = new CommunityPostTableDatabaseAzure();
     info.Description = Post;
     postDatabase.InsertCommunityPost(info);
 }