Cleanup and fixes

This commit is contained in:
2013-01-12 14:58:33 -05:00
parent bc019923d2
commit e50052d41e
27 changed files with 240 additions and 156 deletions
@@ -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);
}
}
}