コード例 #1
0
 public UserController(IUnitOfWork uow, IUsersManager users, IProfile profile, IMainCategory mainCategory)
 {
     _uow          = uow;
     _users        = users;
     _profile      = profile;
     _mainCategory = mainCategory;
 }
コード例 #2
0
 public ProfileController(IUnitOfWork uow, IProfile profile, IMainCategory mainCategory, IUsersManager usersManager)
 {
     _uow          = uow;
     _profile      = profile;
     _mainCategory = mainCategory;
     _usersManager = usersManager;
 }
コード例 #3
0
 public MainCategoryController(IUnitOfWork uow, IMainCategory mainCategory)
 {
     _uow          = uow;
     _mainCategory = mainCategory;
 }