Skip to content

Commit

Permalink
Added missing AbpZeroConfig file..
Browse files Browse the repository at this point in the history
  • Loading branch information
hikalkan committed Mar 21, 2015
1 parent d895510 commit d6127a1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Abp.Zero/Zero/Configuration/AbpZeroConfig.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
namespace Abp.Zero.Configuration
{
internal class AbpZeroConfig : IAbpZeroConfig
{
public IUserManagementConfig UserManagement
{
get { return _userManagementConfig; }
}
private readonly IUserManagementConfig _userManagementConfig;

public AbpZeroConfig(IUserManagementConfig userManagementConfig)
{
_userManagementConfig = userManagementConfig;
}
}
}

0 comments on commit d6127a1

Please sign in to comment.