Esempio n. 1
0
 public void Init()
 {
     m_AlbumsManager = new AlbumsManager(User);
     AlbumPhotosFacade.AlbumsManager = m_AlbumsManager;
     m_WallManager                 = new WallManager(User.WallPosts);
     m_NumberOfUserPosts           = User.WallPosts.Count;
     m_TimerCheckUpdates           = new Timer(60000);
     m_TimerCheckUpdates.Elapsed  += OnTimedEvent;
     m_TimerCheckUpdates.AutoReset = true;
     m_TimerCheckUpdates.Enabled   = true;
 }
Esempio n. 2
0
 public static void UploadAPhotoToTimeline(User i_User, string i_FilePath)
 {
     AlbumsManager.UploadAPhotoToTimeline(i_User, i_FilePath);
 }