Cares.WebApi.Areas.Api.Controllers.TestController.TestController C# (CSharp) Method

TestController() public method

Constructor
public TestController ( IRegisterUserService registerUserService ) : Cares.Implementation.Identity
registerUserService IRegisterUserService
return Cares.Implementation.Identity
        public TestController(IRegisterUserService registerUserService)
        {
            if (registerUserService == null)
            {
                throw new ArgumentNullException("registerUserService");
            }
            this.registerUserService = registerUserService;
        }
        #endregion