Esempio n. 1
0
        public Community ToEntity()
        {
            long        id;
            Community   community      = new Community();
            List <long> paymentTypeIds = new List <long>();

            foreach (CheckBoxVm checkBoxVm in
                     from m in this.PaymentTypes
                     where m.IsChecked
                     select m)
            {
                if (!long.TryParse(checkBoxVm.Value, out id))
                {
                    continue;
                }
                paymentTypeIds.Add(id);
            }
            community.PaymentTypeIds    = paymentTypeIds;
            community.PriceRange        = this.PriceRange.ToEntity();
            community.Deposit           = this.Deposit.ToEntity();
            community.ApplicationFee    = this.ApplicationFee.ToEntity();
            community.PetDeposit        = this.PetDeposit.ToEntity();
            community.LivingSpace       = this.LivingSpace.ToEntity();
            community.BedroomFromId     = this.BedroomFromId;
            community.BedroomToId       = this.BedroomToId;
            community.BathroomFromId    = this.BathroomFromId;
            community.BathroomToId      = this.BathroomToId;
            community.UnitCount         = this.UnitCount;
            community.Amenities         = AmenityVm.ToEntityList(this.DefaultAmenities, this.CustomAmenities);
            community.CommunityServices = CommunityServiceVm.ToEntityList(this.DefaultCommunityServices, this.CustomCommunityServices);
            community.FloorPlans        = new List <FloorPlan>();
            community.SpecHomes         = new List <SpecHome>();
            community.Houses            = new List <House>();
            community.LogoImages        = (this.LogoImages != null ? this.LogoImages.ToEntity(ImageType.Logo) : new List <Image>());
            community.Images            = (this.Images != null ? this.Images.ToEntity(ImageType.Photo) : new List <Image>());
            community.VirtualTour       = this.VirtualTour;
            community.Coupon            = this.Coupon.ToEntity();
            if (this.HasFloorPlans)
            {
                community.FloorPlans = (
                    from m in this.FloorPlans
                    select m.ToEntity()).ToList <FloorPlan>();
                community.FloorPlans.ForEach((FloorPlan m) => m.Community = community);
            }
            if (this.HasSpecHomes)
            {
                community.SpecHomes = (
                    from m in this.SpecHomes
                    select m.ToEntity()).ToList <SpecHome>();
                community.SpecHomes.ForEach((SpecHome m) => m.Community = community);
            }
            if (this.HasHouses)
            {
                community.Houses = (
                    from m in this.Houses
                    select m.ToEntity()).ToList <House>();
                community.Houses.ForEach((House m) => m.Community = community);
            }
            return(community);
        }
Esempio n. 2
0
 public FloorPlan ToEntity()
 {
     return(new FloorPlan()
     {
         Id = this.Id,
         Name = this.Name,
         BedroomFromId = this.BedroomFromId,
         BedroomToId = this.BedroomToId,
         BathroomFromId = this.BathroomFromId,
         BathroomToId = this.BathroomToId,
         PriceRange = this.PriceRange.ToEntity(),
         LivingSpace = this.LivingSpace.ToEntity(),
         Deposit = this.Deposit.ToEntity(),
         ApplicationFee = this.ApplicationFee.ToEntity(),
         PetDeposit = this.PetDeposit.ToEntity(),
         Amenities = AmenityVm.ToEntityList(this.DefaultAmenities, this.CustomAmenities),
         DateAdded = DateTime.Now,
         Images = (this.Images == null ? new List <Image>() : this.Images.ToEntity(ImageType.Photo))
     });
 }
Esempio n. 3
0
 public new SpecHome ToEntity()
 {
     return(new SpecHome()
     {
         Id = base.Id,
         Name = this.Name,
         BedroomFromId = base.BedroomFromId,
         BedroomToId = base.BedroomToId,
         BathroomFromId = base.BathroomFromId,
         BathroomToId = base.BathroomToId,
         PriceRange = base.PriceRange.ToEntity(),
         LivingSpace = base.LivingSpace.ToEntity(),
         Deposit = base.Deposit.ToEntity(),
         ApplicationFee = base.ApplicationFee.ToEntity(),
         PetDeposit = base.PetDeposit.ToEntity(),
         Amenities = AmenityVm.ToEntityList(base.DefaultAmenities, base.CustomAmenities),
         DateAdded = DateTime.Now,
         Images = (base.Images == null ? new List <Image>() : base.Images.ToEntity(ImageType.Photo)),
         SaleType = this.SaleType,
         Status = this.Status,
         Description = this.Description
     });
 }
        public virtual Community ToEntity()
        {
            long      id;
            Community community = new Community()
            {
                Book = new Book()
                {
                    Id = this.BookId
                },
                Package      = this.Package,
                ListingTypes = ConverterHelpers.CheckBoxListToEnumList <ListingType>(this.ListingTypes),
                SeniorHousingAndCareCategoryIds = ConverterHelpers.CheckBoxListToLongArray(this.SeniorHousingAndCareCategories),
                AgeRestrictions = ConverterHelpers.CheckBoxListToEnumList <AgeRestriction>(this.AgeRestrictions),
                Name            = this.Name,
                Address         = (this.AddressValidation.ValidationItems == null ? this.Address.ToEntity() : this.AddressValidation.ToEntity()),
                DisplayAddress  = !this.DoNotDisplayAddress,
                Phones          = this.PhoneList.ToEntityList(),
                Emails          = this.EmailList.ToEntity(),
                Contacts        = this.Contacts.ConvertAll <Contact>((ContactVm m) => m.ToEntity()).Where <Contact>((Contact x) => {
                    if (!string.IsNullOrWhiteSpace(x.FirstName))
                    {
                        return(true);
                    }
                    return(!string.IsNullOrWhiteSpace(x.LastName));
                }).ToList <Contact>(),
                OfficeHours = (
                    from m in this.OfficeHours
                    select m.ToEntity()).ToList <MSLivingChoices.Entities.Admin.OfficeHours>(),
                Description       = this.Description,
                WebsiteUrl        = MslcUrlBuilder.NormalizeUri(this.WebsiteUrl),
                DisplayWebsiteUrl = this.DisplayWebsiteUrl
            };
            List <long> paymentTypeIds = new List <long>();

            foreach (CheckBoxVm checkBoxVm in
                     from m in this.CommunityDetails.PaymentTypes
                     where m.IsChecked
                     select m)
            {
                if (!long.TryParse(checkBoxVm.Value, out id))
                {
                    continue;
                }
                paymentTypeIds.Add(id);
            }
            community.PaymentTypeIds    = paymentTypeIds;
            community.PriceRange        = this.CommunityDetails.PriceRange.ToEntity();
            community.Deposit           = this.CommunityDetails.Deposit.ToEntity();
            community.ApplicationFee    = this.CommunityDetails.ApplicationFee.ToEntity();
            community.PetDeposit        = this.CommunityDetails.PetDeposit.ToEntity();
            community.BedroomFromId     = this.CommunityDetails.BedroomFromId;
            community.BedroomToId       = this.CommunityDetails.BedroomToId;
            community.BathroomFromId    = this.CommunityDetails.BathroomFromId;
            community.BathroomToId      = this.CommunityDetails.BathroomToId;
            community.LivingSpace       = this.CommunityDetails.LivingSpace.ToEntity();
            community.UnitCount         = this.CommunityDetails.UnitCount;
            community.Amenities         = AmenityVm.ToEntityList(this.CommunityDetails.DefaultAmenities, this.CommunityDetails.CustomAmenities);
            community.CommunityServices = CommunityServiceVm.ToEntityList(this.CommunityDetails.DefaultCommunityServices, this.CommunityDetails.CustomCommunityServices);
            community.FloorPlans        = new List <FloorPlan>();
            community.SpecHomes         = new List <SpecHome>();
            community.Houses            = new List <House>();
            community.VirtualTour       = MslcUrlBuilder.NormalizeUri(this.CommunityDetails.VirtualTour);
            community.Coupon            = this.CommunityDetails.Coupon.ToEntity();
            community.Images            = (this.CommunityDetails.Images == null ? new List <Image>() : this.CommunityDetails.Images.ToEntity(ImageType.Photo));
            community.LogoImages        = (this.CommunityDetails.LogoImages == null ? new List <Image>() : this.CommunityDetails.LogoImages.ToEntity(ImageType.Logo));
            if (this.CommunityDetails.HasFloorPlans)
            {
                community.FloorPlans = (
                    from m in this.CommunityDetails.FloorPlans
                    select m.ToEntity()).ToList <FloorPlan>();
                community.FloorPlans.ForEach((FloorPlan m) => m.Community = community);
            }
            if (this.CommunityDetails.HasSpecHomes)
            {
                community.SpecHomes = (
                    from m in this.CommunityDetails.SpecHomes
                    select m.ToEntity()).ToList <SpecHome>();
                community.SpecHomes.ForEach((SpecHome m) => m.Community = community);
            }
            if (this.CommunityDetails.HasHouses)
            {
                community.Houses = (
                    from m in this.CommunityDetails.Houses
                    select m.ToEntity()).ToList <House>();
                community.Houses.ForEach((House m) => m.Community = community);
            }
            community.PropertyManager    = this.ListingDetails.PropertyManager.ToEntity(OwnerType.PropertyManager);
            community.Builder            = this.ListingDetails.Builder.ToEntity(OwnerType.Builder);
            community.CallTrackingPhones = new List <CallTrackingPhone>();
            if (this.ListingDetails.CallTrackingPhones != null)
            {
                if (!this.ListingDetails.ProvisionCallTrackingNumbers)
                {
                    this.ListingDetails.CallTrackingPhones.ForEach((CallTrackingPhoneVm c) => c.IsDisconnected = true);
                }
                community.CallTrackingPhones = (
                    from p in this.ListingDetails.CallTrackingPhones.ConvertAll <CallTrackingPhone>((CallTrackingPhoneVm x) => x.ToEntity())
                    where !string.IsNullOrEmpty(p.Phone)
                    select p).ToList <CallTrackingPhone>();
            }
            community.Publishing.StartDate = this.PublishStart;
            community.Publishing.EndDate   = this.PublishEnd;
            community.Showcase.StartDate   = this.ShowcaseStart;
            community.Showcase.EndDate     = this.ShowcaseEnd;
            return(community);
        }