aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Controllers/UserController.cs
blob: cd472de3d5908328d1f48103f0b01ee03531482d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using ExamTemplate.Services;
using Microsoft.AspNetCore.Mvc;
using ExamTemplate.Web.Models.User;
using AutoMapper;
using ExamTemplate.Services.Models;
using System.Threading.Tasks;

namespace ExamTemplate.Web.Controllers
{
	public class UserController : Controller
	{
		private readonly IMapper _autoMapper;
		private readonly UserService _userService;

		public UserController(IMapper autoMapper, UserService userService)
		{
			this._autoMapper = autoMapper;
			this._userService = userService;
		}

		[HttpGet]
		[Route("/Register")]
		public IActionResult Register()
		{
			return View();
		}

		[HttpPost]
		[Route("/Register")]
		public async Task<IActionResult> Register(RegisterUserViewModel registerUserViewModel)
		{
			RegisterUserServiceModel registerUserServiceModel = this._autoMapper.Map<RegisterUserServiceModel>(registerUserViewModel);

			bool result = await this._userService.RegisterUserAsync(registerUserServiceModel);

			if (result)
				return RedirectToAction("Index", "Home");
			else
				return View();
		}
	}
}