renamed from service to repository, makes more sense i guess

This commit is contained in:
TomPallister
2016-10-05 20:51:02 +01:00
parent f505fd6e90
commit d86a52c1b8
9 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
using Ocelot.Library.Infrastructure.Responses;
namespace Ocelot.Library.Infrastructure.Services
namespace Ocelot.Library.Infrastructure.Repository
{
public class CannotAddDataError : Error
{

View File

@ -1,6 +1,6 @@
using Ocelot.Library.Infrastructure.Responses;
namespace Ocelot.Library.Infrastructure.Services
namespace Ocelot.Library.Infrastructure.Repository
{
public class CannotFindDataError : Error
{

View File

@ -1,6 +1,6 @@
using Ocelot.Library.Infrastructure.Responses;
namespace Ocelot.Library.Infrastructure.Services
namespace Ocelot.Library.Infrastructure.Repository
{
public interface IScopedRequestDataRepository
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using Microsoft.AspNetCore.Http;
using Ocelot.Library.Infrastructure.Responses;
namespace Ocelot.Library.Infrastructure.Services
namespace Ocelot.Library.Infrastructure.Repository
{
public class ScopedRequestDataRepository : IScopedRequestDataRepository
{