Example #1
0
        public IOriginProfileModel Update(IOriginProfileModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = OriginProfilesRepository.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 (OriginProfileMapper.AreEqual(model, existingEntity))
            {
                return(OriginProfileMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            OriginProfileMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            OriginProfilesRepository.Update(OriginProfileMapper.MapToEntity(model));
            // Try to Save Changes
            OriginProfilesRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
Example #2
0
        public IOriginProfileModel Create(IOriginProfileModel 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(OriginProfileMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            OriginProfilesRepository.Add(newEntity);
            // Try to Save Changes
            OriginProfilesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
 public virtual bool AreEqual(IOriginProfileModel model, IOriginProfile entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // OriginProfile Properties
            // <None>
            // Related Objects
            && model.OriginId == entity.OriginId &&
            model.ProfileId == entity.ProfileId
            );
 }
 public virtual bool AreEqual(IOriginProfileModel model, IOriginProfile entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // OriginProfile Properties
         // <None>
         // Related Objects
         && model.OriginId == entity.OriginId
         && model.ProfileId == entity.ProfileId
         ;
 }
 public virtual void MapToEntity(IOriginProfileModel model, ref IOriginProfile entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // OriginProfile Properties
     // <None>
     // Related Objects
     entity.OriginId = model.OriginId;
     entity.Origin = (Origin)model.Origin?.MapToEntity();
     entity.ProfileId = model.ProfileId;
     entity.Profile = (Profile)model.Profile?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(IOriginProfileModel model, ref IOriginProfile entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // OriginProfile Properties
     // <None>
     // Related Objects
     entity.OriginId  = model.OriginId;
     entity.Origin    = (Origin)model.Origin?.MapToEntity();
     entity.ProfileId = model.ProfileId;
     entity.Profile   = (Profile)model.Profile?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IOriginProfile MapToEntity(IOriginProfileModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<OriginProfile, IOriginProfileModel>(model);
     // OriginProfile Properties
     // <None>
     // Related Objects
     entity.OriginId = model.OriginId;
     entity.Origin = (Origin)model.Origin?.MapToEntity();
     entity.ProfileId = model.ProfileId;
     entity.Profile = (Profile)model.Profile?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
        public virtual IOriginProfile MapToEntity(IOriginProfileModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <OriginProfile, IOriginProfileModel>(model);

            // OriginProfile Properties
            // <None>
            // Related Objects
            entity.OriginId  = model.OriginId;
            entity.Origin    = (Origin)model.Origin?.MapToEntity();
            entity.ProfileId = model.ProfileId;
            entity.Profile   = (Profile)model.Profile?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = OriginProfilesMockingSetup.DoMockingSetupForOriginProfile(1);
            var mockOriginProfilesRepository = OriginProfilesMockingSetup.DoMockingSetupForRepository();

            mockOriginProfilesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow       = new OriginProfilesBusinessWorkflow(mockOriginProfilesRepository.Object, new OriginProfileMapper());
            var model                  = OriginProfilesMockingSetup.DoMockingSetupForOriginProfileModel(1);
            IOriginProfileModel 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 IOriginProfileModel Create(IOriginProfileModel 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(OriginProfileMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = OriginProfileMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     OriginProfilesRepository.Add(newEntity);
     // Try to Save Changes
     OriginProfilesRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
        public virtual IOriginProfileSearchModel MapToSearchModel(IOriginProfileModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IOriginProfileModel, OriginProfileSearchModel>(model);

            // Search Properties
            searchModel.OriginId                = model.OriginId;
            searchModel.OriginCustomKey         = model.Origin?.CustomKey;
            searchModel.OriginApiDetailUrl      = model.Origin?.ApiDetailUrl;
            searchModel.OriginSiteDetailUrl     = model.Origin?.SiteDetailUrl;
            searchModel.OriginName              = model.Origin?.Name;
            searchModel.OriginShortDescription  = model.Origin?.ShortDescription;
            searchModel.OriginDescription       = model.Origin?.Description;
            searchModel.ProfileId               = model.ProfileId;
            searchModel.ProfileCustomKey        = model.Profile?.CustomKey;
            searchModel.ProfileApiDetailUrl     = model.Profile?.ApiDetailUrl;
            searchModel.ProfileSiteDetailUrl    = model.Profile?.SiteDetailUrl;
            searchModel.ProfileName             = model.Profile?.Name;
            searchModel.ProfileShortDescription = model.Profile?.ShortDescription;
            searchModel.ProfileDescription      = model.Profile?.Description;
            // Return Search Model
            return(searchModel);
        }
 public IOriginProfileModel Update(IOriginProfileModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = OriginProfilesRepository.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 (OriginProfileMapper.AreEqual(model, existingEntity))
     {
         return OriginProfileMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     OriginProfileMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     OriginProfilesRepository.Update(OriginProfileMapper.MapToEntity(model));
     // Try to Save Changes
     OriginProfilesRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
 public virtual IOriginProfileSearchModel MapToSearchModel(IOriginProfileModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IOriginProfileModel, OriginProfileSearchModel>(model);
     // Search Properties
     searchModel.OriginId = model.OriginId;
     searchModel.OriginCustomKey = model.Origin?.CustomKey;
     searchModel.OriginApiDetailUrl = model.Origin?.ApiDetailUrl;
     searchModel.OriginSiteDetailUrl = model.Origin?.SiteDetailUrl;
     searchModel.OriginName = model.Origin?.Name;
     searchModel.OriginShortDescription = model.Origin?.ShortDescription;
     searchModel.OriginDescription = model.Origin?.Description;
     searchModel.ProfileId = model.ProfileId;
     searchModel.ProfileCustomKey = model.Profile?.CustomKey;
     searchModel.ProfileApiDetailUrl = model.Profile?.ApiDetailUrl;
     searchModel.ProfileSiteDetailUrl = model.Profile?.SiteDetailUrl;
     searchModel.ProfileName = model.Profile?.Name;
     searchModel.ProfileShortDescription = model.Profile?.ShortDescription;
     searchModel.ProfileDescription = model.Profile?.Description;
     // Return Search Model
     return searchModel;
 }
 public static IOriginProfile MapToEntity(this IOriginProfileModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public static bool AreEqual(this IOriginProfileModel model, IOriginProfile entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public static IOriginProfileSearchModel MapToSearchModel(this IOriginProfileModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static void MapToEntity(this IOriginProfileModel model, ref IOriginProfile entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }