routine update

This commit is contained in:
yubaolee
2015-05-24 23:23:26 +08:00
parent d2641d40fa
commit 5cf16393f5
12 changed files with 161 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
namespace OpenAuth.Repository.Repository
namespace OpenAuth.Repository
{
public class BaseRepository
{

View File

@@ -54,8 +54,8 @@
<Compile Include="Mapping\UserMap.cs" />
<Compile Include="OpenAuthDBContext.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Repository\BaseRepository.cs" />
<Compile Include="Repository\UserRepository.cs" />
<Compile Include="BaseRepository.cs" />
<Compile Include="UserRepository.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenAuth.Domain\OpenAuth.Domain.csproj">
@@ -70,6 +70,7 @@
</None>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.

View File

@@ -3,7 +3,7 @@ using System.Linq;
using OpenAuth.Domain.Interface;
using OpenAuth.Domain.Model;
namespace OpenAuth.Repository.Repository
namespace OpenAuth.Repository
{
public class UserRepository :BaseRepository, IUserRepository
{