ArmedCards.Web.Controllers.ProfileController.ProfileController C# (CSharp) Method

ProfileController() public method

Constructor
public ProfileController ( ArmedCards.BusinessLogic.AppServices selectUser, ArmedCards.BusinessLogic.AppServices updateUser, ArmedCards.BusinessLogic.AppServices selectGamePlayer ) : System
selectUser ArmedCards.BusinessLogic.AppServices
updateUser ArmedCards.BusinessLogic.AppServices
selectGamePlayer ArmedCards.BusinessLogic.AppServices
return System
        public ProfileController(AS.User.Base.ISelect selectUser,
								 AS.User.Base.IUpdate updateUser,
								 AS.GamePlayer.Base.ISelect selectGamePlayer)
        {
            this._selectUser = selectUser;
            this._updateUser = updateUser;
            this._selectGamePlayer = selectGamePlayer;
        }