removed additional namespace

This commit is contained in:
tidusjar 2016-03-02 09:43:51 +00:00
parent f9cbf18233
commit 3ea9be94aa
3 changed files with 71 additions and 78 deletions

View file

@ -36,10 +36,6 @@ using RequestPlex.Store.Models;
namespace RequestPlex.Store.Repository namespace RequestPlex.Store.Repository
{ {
namespace NZBDash.DataAccessLayer.Repository
{
public class JsonRepository : ISettingsRepository public class JsonRepository : ISettingsRepository
{ {
private ICacheProvider Cache { get; set; } private ICacheProvider Cache { get; set; }
@ -115,5 +111,4 @@ namespace RequestPlex.Store.Repository
Cache.Remove(TypeName + "GetAll"); Cache.Remove(TypeName + "GetAll");
} }
} }
}
} }

View file

@ -10,8 +10,7 @@ using RequestPlex.Core;
using RequestPlex.Core.SettingModels; using RequestPlex.Core.SettingModels;
using RequestPlex.Helpers; using RequestPlex.Helpers;
using RequestPlex.Store; using RequestPlex.Store;
using RequestPlex.Store.Models; using RequestPlex.Store.Repository;
using RequestPlex.Store.Repository.NZBDash.DataAccessLayer.Repository;
using FormsAuthentication = Nancy.Authentication.Forms.FormsAuthentication; using FormsAuthentication = Nancy.Authentication.Forms.FormsAuthentication;

View file

@ -1,5 +1,4 @@
using System; using System;
using System.Diagnostics;
using Microsoft.Owin.Hosting; using Microsoft.Owin.Hosting;
using Mono.Data.Sqlite; using Mono.Data.Sqlite;
@ -8,7 +7,7 @@ using RequestPlex.Core;
using RequestPlex.Core.SettingModels; using RequestPlex.Core.SettingModels;
using RequestPlex.Helpers; using RequestPlex.Helpers;
using RequestPlex.Store; using RequestPlex.Store;
using RequestPlex.Store.Repository.NZBDash.DataAccessLayer.Repository; using RequestPlex.Store.Repository;
namespace RequestPlex.UI namespace RequestPlex.UI
{ {