Example #1
0
        public MessageApp(int id, string name)
        {
            this.Messages = new List <string>();
            this.Name     = name;
            List <Message> MessageService = ServicesConsume.GetMessages(id);

            DB.createTable();
            this.insertMessages(MessageService);
            this.ID = id;
            this.messagesFrom(id);
        }
Example #2
0
 public AppMoviles()
 {
     this.Contacts = ServicesConsume.GetContactList(3);
 }
Example #3
0
 public void updateFiles(int id)
 {
     this.Files = ServicesConsume.GetFiles(id);
 }
Example #4
0
        public void Execute(object parameter)
        {
            File f = (File)parameter;

            ServicesConsume.DownloadFile(f.id, f.name);
        }
Example #5
0
 public FilesApp(int id, string name)
 {
     this.ID    = id;
     this.Name  = name;
     this.Files = ServicesConsume.GetFiles(id);
 }