Skip to content

Commit

Permalink
Update UserController.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
anjoy8 committed May 27, 2019
1 parent 14519d8 commit d8e9f54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Blog.Core/Controllers/UserController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@ public class UserController : ControllerBase
/// <param name="sysUserInfoServices"></param>
/// <param name="userRoleServices"></param>
/// <param name="roleServices"></param>
public UserController(ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices)
/// <param name="user"></param>
public UserController(ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices, IUser user)
{
_sysUserInfoServices = sysUserInfoServices;
_userRoleServices = userRoleServices;
_roleServices = roleServices;
_user = user;
}

/// <summary>
Expand Down

0 comments on commit d8e9f54

Please sign in to comment.