Beispiel #1
0
        public static ThisEntity Get(int id,
                                     bool forEditView = false)
        {
            ThisEntity entity            = new ThisEntity();
            bool       includingProfiles = false;

            if (forEditView)
            {
                includingProfiles = true;
            }

            using (var context = new EntityContext())
            {
                DBEntity item = context.Entity_FinancialAlignmentProfile
                                .SingleOrDefault(s => s.Id == id);

                if (item != null && item.Id > 0)
                {
                    ToMap(item, entity,
                          true,                       //includingProperties
                          includingProfiles);
                }
            }

            return(entity);
        }
Beispiel #2
0
        public bool ValidateProfile(ThisEntity profile, ref SaveStatus status)
        {
            status.HasSectionErrors = false;

            //
            if (string.IsNullOrWhiteSpace(profile.FrameworkName))
            {
                status.AddWarning(thisClassName + " - A Framework name must be entered");
            }

            if (!IsUrlValid(profile.Framework, ref commonStatusMessage))
            {
                status.AddWarning(thisClassName + " - The Framework Url is invalid " + commonStatusMessage);
            }

            if (!IsUrlValid(profile.TargetNode, ref commonStatusMessage))
            {
                status.AddWarning(thisClassName + " - The TargetNode Url is invalid " + commonStatusMessage);
            }
            if (!string.IsNullOrWhiteSpace(profile.AlignmentDate) &&
                IsValidDate(profile.AlignmentDate) == false)
            {
                status.AddWarning(thisClassName + " - The Alignment Date is invalid ");
            }

            return(!status.HasSectionErrors);
        }
Beispiel #3
0
        public static void ToMap(DBEntity from, ThisEntity to,
                                 bool includingProperties = false,
                                 bool includingProfiles   = true)
        {
            to.Id                    = from.Id;
            to.RowId                 = from.RowId;
            to.ParentId              = from.EntityId;
            to.Framework             = GetData(from.Framework);
            to.FrameworkName         = GetData(from.FrameworkName);
            to.ProfileName           = to.FrameworkName;
            to.TargetNodeName        = GetData(from.TargetNodeName);
            to.TargetNode            = GetData(from.TargetNode);
            to.TargetNodeDescription = GetData(from.TargetNodeDescription);
            to.CodedNotation         = from.CodedNotation;

            if (IsValidDate(from.AlignmentDate))
            {
                to.AlignmentDate = (( DateTime )from.AlignmentDate).ToShortDateString();
            }
            else
            {
                to.AlignmentDate = "";
            }

            to.AlignmentTypeId = from.AlignmentTypeId == null ? 0 : (int)from.AlignmentTypeId;
            //if ( to.AlignmentTypeId > 0 && from.Codes_PropertyValue != null)
            //{
            //	to.AlignmentType = from.Codes_PropertyValue.Title;
            //}

            to.Weight = from.Weight != null ? (decimal)from.Weight : 0;

            if (IsValidDate(from.Created))
            {
                to.Created = ( DateTime )from.Created;
            }
            if (IsValidDate(from.LastUpdated))
            {
                to.LastUpdated = ( DateTime )from.LastUpdated;
            }
        }
Beispiel #4
0
        /// <summary>
        /// Get all the Financial Alignments for the parent entity (ex a credential)
        /// </summary>
        /// <param name="parentUid"></param>
        /// <returns></returns>
        public static List <ThisEntity> GetAll(Guid parentUid)
        {
            ThisEntity        to     = new ThisEntity();
            List <ThisEntity> list   = new List <ThisEntity>();
            Entity            parent = EntityManager.GetEntity(parentUid);

            if (parent == null || parent.Id == 0)
            {
                return(list);
            }

            try
            {
                using (var context = new EntityContext())
                {
                    //context.Configuration.LazyLoadingEnabled = false;

                    List <EM.Entity_FinancialAlignmentProfile> results = context.Entity_FinancialAlignmentProfile
                                                                         .Where(s => s.EntityId == parent.Id)
                                                                         .OrderBy(s => s.FrameworkName)
                                                                         .ThenBy(s => s.Created)
                                                                         .ToList();

                    if (results != null && results.Count > 0)
                    {
                        foreach (EM.Entity_FinancialAlignmentProfile from in results)
                        {
                            to = new ThisEntity();
                            ToMap(from, to, true, true);
                            list.Add(to);
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                LoggingHelper.LogError(ex, thisClassName + ".GetAll (Guid parentUid)");
            }
            return(list);
        }        //
Beispiel #5
0
        }        //

        public static void FromMap(ThisEntity from, DBEntity to)
        {
            //want to ensure fields from create are not wiped
            if (to.Id == 0)
            {
            }


            to.Id                    = from.Id;
            to.Framework             = GetData(from.Framework);
            to.FrameworkName         = GetData(from.FrameworkName);
            to.TargetNodeName        = GetData(from.TargetNodeName);
            to.TargetNode            = GetData(from.TargetNode);
            to.TargetNodeDescription = GetData(from.TargetNodeDescription);
            to.CodedNotation         = from.CodedNotation;
            to.AlignmentDate         = SetDate(from.AlignmentDate);
            //to.AlignmentType = from.AlignmentType;
            //if ( from.AlignmentTypeId > 0 )
            //	to.AlignmentTypeId = from.AlignmentTypeId;
            //else
            to.AlignmentTypeId = null;

            to.Weight = SetData(from.Weight, 0.01M);
        }
Beispiel #6
0
        /// <summary>
        /// Persist FinancialAlignmentProfile
        /// </summary>
        /// <param name="entity"></param>
        /// <param name="parentUid"></param>
        /// <param name="userId"></param>
        /// <param name="messages"></param>
        /// <returns></returns>
        public bool Save(ThisEntity entity, Entity parent, ref SaveStatus status)
        {
            bool isValid = true;
            int  count   = 0;

            DBEntity efEntity = new DBEntity();

            //Entity parent = EntityManager.GetEntity( parentUid );
            if (parent == null || parent.Id == 0)
            {
                status.AddError("Error - the parent entity was not found.");
                return(false);
            }
            using (var context = new EntityContext())
            {
                try
                {
                    if (ValidateProfile(entity, ref status) == false)
                    {
                        return(false);
                    }

                    if (entity.Id == 0)
                    {
                        //add
                        efEntity = new DBEntity();
                        FromMap(entity, efEntity);
                        efEntity.EntityId = parent.Id;
                        efEntity.Created  = efEntity.LastUpdated = DateTime.Now;
                        if (IsValidGuid(entity.RowId))
                        {
                            efEntity.RowId = entity.RowId;
                        }
                        else
                        {
                            efEntity.RowId = Guid.NewGuid();
                        }

                        context.Entity_FinancialAlignmentProfile.Add(efEntity);
                        count = context.SaveChanges();

                        entity.Id    = efEntity.Id;
                        entity.RowId = efEntity.RowId;
                        if (count == 0)
                        {
                            status.AddError(thisClassName + " - Unable to add Financial Alignment Profile");
                        }
                    }
                    else
                    {
                        efEntity = context.Entity_FinancialAlignmentProfile.SingleOrDefault(s => s.Id == entity.Id);
                        if (efEntity != null && efEntity.Id > 0)
                        {
                            entity.RowId = efEntity.RowId;
                            //update
                            FromMap(entity, efEntity);
                            //has changed?
                            if (HasStateChanged(context))
                            {
                                efEntity.LastUpdated = System.DateTime.Now;
                                count = context.SaveChanges();
                            }
                        }
                    }
                }
                catch (System.Data.Entity.Validation.DbEntityValidationException dbex)
                {
                    string message = HandleDBValidationError(dbex, thisClassName + ".Save() ", "FinancialAlignmentProfile");
                    status.AddWarning(thisClassName + " - Error - the save was not successful. " + message);
                    LoggingHelper.LogError(dbex, thisClassName + string.Format(".Save(), Parent: {0} ({1})", parent.EntityBaseName, parent.EntityBaseId));
                    isValid = false;
                }
                catch (Exception ex)
                {
                    string message = FormatExceptions(ex);
                    status.AddError(thisClassName + " - Error - the save was not successful. " + message);
                    LoggingHelper.LogError(ex, thisClassName + string.Format(".Save(), Parent: {0} ({1}), UserId: {2}", parent.EntityBaseName, parent.EntityBaseId));
                    isValid = false;
                }
            }

            return(isValid);
        }