protected TaskyManager()
 {
     // set the db location
     //_dbLocation = Path.Combine (NSBundle.MainBundle.BundlePath, "Library/TaskDB.db3");
     _dbLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "TaskDB.db3");
     // instantiate the database
     this._db = new TaskyDatabase(_dbLocation);
 }
Beispiel #2
0
 protected TaskyRepository()
 {
     //set Database Location in the device
     dbLocation = DatabaseFilePath;
     db         = new Tasky.PortableLibrary.DL.TaskyDatabase(dbLocation);
 }