Cleanup and fixes
This commit is contained in:
@@ -1,10 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Web.Mvc;
|
||||
using AutoMapper;
|
||||
|
||||
namespace MileageTraker.Web.ViewModels.Account
|
||||
{
|
||||
public class ChangePasswordViewModel
|
||||
{
|
||||
[HiddenInput(DisplayValue = false)]
|
||||
public string Username { get; set; }
|
||||
|
||||
[HiddenInput(DisplayValue = false)]
|
||||
public string FullName { get; set; }
|
||||
|
||||
[HiddenInput(DisplayValue = false)]
|
||||
public string Email { get; set; }
|
||||
|
||||
[Required]
|
||||
[DataType(DataType.Password)]
|
||||
[Display(Name = "Current password")]
|
||||
@@ -20,5 +30,22 @@ namespace MileageTraker.Web.ViewModels.Account
|
||||
[Display(Name = "Confirm new password")]
|
||||
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
|
||||
public string ConfirmPassword { get; set; }
|
||||
|
||||
static ChangePasswordViewModel()
|
||||
{
|
||||
Mapper.CreateMap<Models.User, ChangePasswordViewModel>();
|
||||
}
|
||||
|
||||
public ChangePasswordViewModel(){}
|
||||
|
||||
public ChangePasswordViewModel(Models.User user)
|
||||
{
|
||||
Mapper.Map(user, this);
|
||||
}
|
||||
|
||||
public void SetProperties(Models.User user)
|
||||
{
|
||||
Mapper.Map(user, this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user