public IPersonAliasModel Update(IPersonAliasModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = PersonAliasesRepository.Get(model.Id.Value);

            // Check if we would be applying identical information, if we are, just return the original
            // ReSharper disable once SuspiciousTypeConversion.Global
            if (PersonAliasMapper.AreEqual(model, existingEntity))
            {
                return(PersonAliasMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            PersonAliasMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            PersonAliasesRepository.Update(PersonAliasMapper.MapToEntity(model));
            // Try to Save Changes
            PersonAliasesRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
        public IPersonAliasModel Create(IPersonAliasModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateIDIsNull(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Search for an Existing Record (Don't allow Duplicates
            var results = Search(PersonAliasMapper.MapToSearchModel(model));

            if (results.Any())
            {
                return(results.First());
            }                                              // Return the first that matches
            // Map model to a new entity
            var newEntity = PersonAliasMapper.MapToEntity(model);

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            PersonAliasesRepository.Add(newEntity);
            // Try to Save Changes
            PersonAliasesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
 public virtual bool AreEqual(IPersonAliasModel model, IPersonAlias entity)
 {
     return(NameableEntityMapper.AreEqual(model, entity)
            // PersonAlias Properties
            // <None>
            // Related Objects
            && model.PersonId == entity.PersonId
            );
 }
 public virtual bool AreEqual(IPersonAliasModel model, IPersonAlias entity)
 {
     return NameableEntityMapper.AreEqual(model, entity)
         // PersonAlias Properties
         // <None>
         // Related Objects
         && model.PersonId == entity.PersonId
         ;
 }
 public virtual void MapToEntity(IPersonAliasModel model, ref IPersonAlias entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     NameableEntityMapper.MapToEntity(model, ref entity);
     // PersonAlias Properties
     // <None>
     // Related Objects
     entity.PersonId = model.PersonId;
     entity.Person = (Person)model.Person?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(IPersonAliasModel model, ref IPersonAlias entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     NameableEntityMapper.MapToEntity(model, ref entity);
     // PersonAlias Properties
     // <None>
     // Related Objects
     entity.PersonId = model.PersonId;
     entity.Person   = (Person)model.Person?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IPersonAlias MapToEntity(IPersonAliasModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = NameableEntityMapper.MapToEntity<PersonAlias, IPersonAliasModel>(model);
     // PersonAlias Properties
     // <None>
     // Related Objects
     entity.PersonId = model.PersonId;
     entity.Person = (Person)model.Person?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
        public virtual IPersonAliasSearchModel MapToSearchModel(IPersonAliasModel model)
        {
            var searchModel = NameableEntityMapper.MapToSearchModel <IPersonAliasModel, PersonAliasSearchModel>(model);

            // Search Properties
            searchModel.PersonId               = model.PersonId;
            searchModel.PersonCustomKey        = model.Person?.CustomKey;
            searchModel.PersonApiDetailUrl     = model.Person?.ApiDetailUrl;
            searchModel.PersonSiteDetailUrl    = model.Person?.SiteDetailUrl;
            searchModel.PersonName             = model.Person?.Name;
            searchModel.PersonShortDescription = model.Person?.ShortDescription;
            searchModel.PersonDescription      = model.Person?.Description;
            // Return Search Model
            return(searchModel);
        }
        public virtual IPersonAlias MapToEntity(IPersonAliasModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = NameableEntityMapper.MapToEntity <PersonAlias, IPersonAliasModel>(model);

            // PersonAlias Properties
            // <None>
            // Related Objects
            entity.PersonId = model.PersonId;
            entity.Person   = (Person)model.Person?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
Ejemplo n.º 10
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = PersonAliasesMockingSetup.DoMockingSetupForPersonAlias(1);
            var mockPersonAliasesRepository = PersonAliasesMockingSetup.DoMockingSetupForRepository();

            mockPersonAliasesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow     = new PersonAliasesBusinessWorkflow(mockPersonAliasesRepository.Object, new PersonAliasMapper());
            var model                = PersonAliasesMockingSetup.DoMockingSetupForPersonAliasModel(1);
            IPersonAliasModel result = null;

            // Act
            try { result = businessWorkflow.Update(model.Object); }
            catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
            // Assert
            Assert.NotNull(result);
            Assert.Equal("/TEST/KING-STEPHEN", result.ApiDetailUrl);
            Assert.Null(result.UpdatedDate);
        }
 public IPersonAliasModel Create(IPersonAliasModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateIDIsNull(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Search for an Existing Record (Don't allow Duplicates
     var results = Search(PersonAliasMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = PersonAliasMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     PersonAliasesRepository.Add(newEntity);
     // Try to Save Changes
     PersonAliasesRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
 public IPersonAliasModel Update(IPersonAliasModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = PersonAliasesRepository.Get(model.Id.Value);
     // Check if we would be applying identical information, if we are, just return the original
     // ReSharper disable once SuspiciousTypeConversion.Global
     if (PersonAliasMapper.AreEqual(model, existingEntity))
     {
         return PersonAliasMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     PersonAliasMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     PersonAliasesRepository.Update(PersonAliasMapper.MapToEntity(model));
     // Try to Save Changes
     PersonAliasesRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
 public static IPersonAlias MapToEntity(this IPersonAliasModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public static void MapToEntity(this IPersonAliasModel model, ref IPersonAlias entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
 public static IPersonAliasSearchModel MapToSearchModel(this IPersonAliasModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public virtual IPersonAliasSearchModel MapToSearchModel(IPersonAliasModel model)
 {
     var searchModel = NameableEntityMapper.MapToSearchModel<IPersonAliasModel, PersonAliasSearchModel>(model);
     // Search Properties
     searchModel.PersonId = model.PersonId;
     searchModel.PersonCustomKey = model.Person?.CustomKey;
     searchModel.PersonApiDetailUrl = model.Person?.ApiDetailUrl;
     searchModel.PersonSiteDetailUrl = model.Person?.SiteDetailUrl;
     searchModel.PersonName = model.Person?.Name;
     searchModel.PersonShortDescription = model.Person?.ShortDescription;
     searchModel.PersonDescription = model.Person?.Description;
     // Return Search Model
     return searchModel;
 }
 public static bool AreEqual(this IPersonAliasModel model, IPersonAlias entity)
 {
     return(Mapper.AreEqual(model, entity));
 }