示例#1
0
 public EntryController(IDaNangZService dnZService)
 {
     this._dnZService = dnZService;
 }
示例#2
0
 public DashboardController(IDaNangZService dnZService)
 {
     this._dnZService = dnZService;
 }
示例#3
0
 public AccountController(IUserService <UserProfile, int> userService, IDaNangZService dnZService, IRoleService roleService)
 {
     _userService = userService;
     _dnZService  = dnZService;
     _roleService = roleService;
 }
示例#4
0
 public UserProfileController(IUserService <UserProfile, int> userService, IRoleService roleService, IDaNangZService dnZService)
 {
     _simpleMembershipService = userService;
     _roleService             = roleService;
     _dnZService = dnZService;
 }