Example #1
0
 public SentViewModel(IPhantasmaDb phantasmaDb)
 {
     _db      = phantasmaDb;
     SentList = new ObservableCollection <Message>();
 }
Example #2
0
 public InboxViewModel(IPhantasmaDb phantasmaDb)
 {
     _db       = phantasmaDb;
     InboxList = new ObservableCollection <Message>();
 }
Example #3
0
 public MessageDetailViewModel(IPhantasmaDb phantasmaDb)
 {
     _db = phantasmaDb;
 }
Example #4
0
 public DraftsViewModel(IPhantasmaDb phantasmaDb)
 {
     _db = phantasmaDb;
 }
Example #5
0
 public ComposeViewModel(IPhantasmaDb phantasmaDb)
 {
     _db = phantasmaDb;
 }