public UserController(IAddUserCommand iAddUserCommand , ISignInUserCommand iSignInUserCommand , IEditUserCommand iEditUserCommand , IGetUserCommand iGetUserCommand , IFollowUserCommand iFollowUserCommand) { _addUserCommand = iAddUserCommand; _iSignInUserCommand = iSignInUserCommand; _ieditUserCommand = iEditUserCommand; _iGetUserCommand = iGetUserCommand; _iFollowUserCommand = iFollowUserCommand; }
public AccountsController(IRegisterNewUserCommand registerNewUserCommand, ISignInUserCommand signInUserCommand) { this.registerNewUserCommand = registerNewUserCommand; this.signInUserCommand = signInUserCommand; }