Beispiel #1
0
 public MMSDataSource(string dbFilePath)
 {
     Items = new DataItems <MMS>(dbFilePath);
     Type  = typeof(MMS);
 }
Beispiel #2
0
 public CallDataSource(string dbFilePath)
 {
     Items = new DataItems <Call>(dbFilePath);
     Type  = typeof(Call);
 }
Beispiel #3
0
 public SmsDataSource(string dbFilePath)
 {
     Items = new DataItems <SMS>(dbFilePath);
     Type  = typeof(SMS);
 }
Beispiel #4
0
 public ContactDataSource(string dbFilePath)
 {
     Items = new DataItems <Contact>(dbFilePath);
     Type  = typeof(Contact);
 }