Click here to Skip to main content
15,879,535 members
Articles / Web Development / HTML

Design and Develop a website using ASP.NET MVC 4, EF, Knockoutjs and Bootstrap : Part - 2

Rate me:
Please Sign up or sign in to vote.
4.92/5 (74 votes)
13 Jan 2013CPOL10 min read 217.7K   15.7K   168  
Design a website architecture that must be simple, easily understandable by any web designer using asp.net MVC, EF, Knockoutjs and Bootstrap
using Application.Common;
using Application.Core.ProfileModule.ProfileAddressAggregate;
using Application.Core.Resources;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

namespace Application.Core.ProfileModule.AddressAggregate
{
    public class Address : Entity, IValidatableObject
    {

        #region Constructor

        public Address()
        {
            this.ProfileAddresses = new HashSet<ProfileAddress>();
        }

        #endregion Constructor

        #region Property
        [Key]
        public int AddressId { get; set; }
        public string AddressLine1 { get; set; }
        public string AddressLine2 { get; set; }
        public string Country { get; set; }
        public string State { get; set; }
        public string City { get; set; }
        public string ZipCode { get; set; }
        public System.DateTime Created { get; set; }
        public string CreatedBy { get; set; }
        public System.DateTime Updated { get; set; }
        public string UpdatedBy { get; set; }

        public virtual ICollection<ProfileAddress> ProfileAddresses { get; set; }
        #endregion Property

        #region Public Methods

        #endregion Public Methods

        #region IValidatableObject Members

        /// <summary>
        /// This will validate entity for all  the conditions
        /// </summary>
        /// <param name="validationContext"></param>
        /// <returns></returns>
        public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
        {
            var validationResults = new List<ValidationResult>();

            //-->Check AddressLine1 property
            if (String.IsNullOrWhiteSpace(this.AddressLine1))
            {
                validationResults.Add(new ValidationResult(Messages.validation_AddressAddressLine1CannotBeNull,
                                                           new string[] { "AddressLine1" }));
            }

            //-->Check AddressLine2 property
            if (String.IsNullOrWhiteSpace(this.AddressLine2))
            {
                validationResults.Add(new ValidationResult(Messages.validation_AddressAddressLine2CannotBeBull,
                                                           new string[] { "AddressLine2" }));
            }

            //-->Check City identifier
            if (String.IsNullOrWhiteSpace(this.City))
                validationResults.Add(new ValidationResult(Messages.validation_AddresscityCannotBeEmpty,
                                                          new string[] { "City" }));
            //-->Check Country identifier
            if (String.IsNullOrWhiteSpace(this.Country))
                validationResults.Add(new ValidationResult(Messages.validation_AddressCountryCannotBeEmpty,
                                                          new string[] { "Country" }));
            //-->Check State identifier
            if (String.IsNullOrWhiteSpace(this.State))
                validationResults.Add(new ValidationResult(Messages.validation_AddressStateCannotBeEmpty,
                                                          new string[] { "State" }));

            //-->Check ZipCode property
            if (String.IsNullOrWhiteSpace(this.ZipCode))
            {
                validationResults.Add(new ValidationResult(Messages.validation_ZipCodeCannotBeBull,
                                                           new string[] { "ZipCode" }));
            }

            return validationResults;
        }

        #endregion

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions