public void MapFrom(MYFAN.BusinessObjects.Category category)
 {
     this.ID = category.ID;
     this.Name = category.Name;
     this.parentID = category.parentID;
     this.parentName = category.parentName;
 }
 public void MapFrom(MYFAN.BusinessObjects.Country countryItem)
 {
     this.Name = countryItem.Name;
     this.ID = countryItem.ID;
     this.Icon = countryItem.Icon;
     this.Image = countryItem.Image;
 }
 public void MapFrom(MYFAN.BusinessObjects.State stateItem)
 {
     this.Name = stateItem.Name;
     this.ID = stateItem.ID;
     this.Abbr = stateItem.Abbr;
     this.ContryName = stateItem.Country.Name;
     this.CountryID = stateItem.Country.ID;
 }