Mercurial > silverbladetech
view Chronosv2/source/Model/UserLogin.cs @ 19:09d18d6e5f40
airport work
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Thu, 15 Mar 2012 06:59:15 +0000 |
parents | 443821e55f06 |
children |
line wrap: on
line source
using System.ComponentModel; using Chronos.Presentation.ViewModel; namespace Chronos.Model { public sealed class UserLogin : ObservableObject, IDataErrorInfo { #region · Fields · private string userId; private string password; private int workYear; #endregion #region · IDataErrorInfo Members · public string Error { get { return null; } } public string this[string columnName] { get { return null; } } #endregion #region · Properties · public string UserId { get { return this.userId; } set { if (this.userId != value) { this.userId = value; this.NotifyPropertyChanged(() => UserId); } } } public string Password { get { return this.password; } set { if (this.password != value) { this.password = value; this.NotifyPropertyChanged(() => Password); } } } public int WorkYear { get { return this.workYear; } set { if (this.workYear != value) { this.workYear = value; this.NotifyPropertyChanged(() => WorkYear); } } } #endregion #region · Constructors · public UserLogin() { } #endregion } }