PathService.cs 442 B

1234567891011121314151617
  1. using System.IO;
  2. using TodoSqlite.Services.Sqlite;
  3. using TodoSqlite.UWP.Services.Sqlite;
  4. using Windows.Storage;
  5. using Xamarin.Forms;
  6. [assembly: Dependency(typeof(PathService))]
  7. namespace TodoSqlite.UWP.Services.Sqlite
  8. {
  9. public class PathService : IPathService
  10. {
  11. public string GetDatabasePath()
  12. {
  13. return Path.Combine(ApplicationData.Current.LocalFolder.Path, AppSettings.DatabaseName);
  14. }
  15. }
  16. }