예제 #1
0
        private static void LoginUserFromData()
        {
            string email    = Settings.Default.Email;
            string password = Settings.Default.Password;

            if (email.Length > 3)
            {
                ConnectionController connection = ConnectionControllerImpl.GetController();
                connection.SingIn(SaveService.GetUser());
            }
        }
예제 #2
0
 private MoviesServiceImpl()
 {
     connection = ConnectionControllerImpl.GetController();
     DownloadMoviesList();
 }
예제 #3
0
 private HallsServiceImpl()
 {
     connection = ConnectionControllerImpl.GetController();
     DownloadHallsList();
 }
예제 #4
0
 private ArticleServiceImpl()
 {
     connection = ConnectionControllerImpl.GetController();
     DownloadArticleList();
 }
예제 #5
0
 private SeanceServiceImpl()
 {
     connection = ConnectionControllerImpl.GetController();
     DownloadSeanceList();
 }
예제 #6
0
 private RegistrationServiceImpl()
 {
     SetConnectionController(ConnectionControllerImpl.GetController());
 }
예제 #7
0
 private LoginServiceImpl()
 {
     SetConnectionController(ConnectionControllerImpl.GetController());
 }