public IPromoModel Create(IPromoModel 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(PromoMapper.MapToSearchModel(model)); if (results.Any()) { return(results.First()); } // Return the first that matches // Map model to a new entity var newEntity = PromoMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it PromosRepository.Add(newEntity); // Try to Save Changes PromosRepository.SaveChanges(); // Return the new value return(Get(newEntity.Id)); }
public IPromoModel Update(IPromoModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = PromosRepository.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 (PromoMapper.AreEqual(model, existingEntity)) { return(PromoMapper.MapToModel(existingEntity)); } // Map model to an existing entity PromoMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it PromosRepository.Update(PromoMapper.MapToEntity(model)); // Try to Save Changes PromosRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public void Verify_MapToEntity_AssignsPromoProperties() { // Arrange var mapper = new PromoMapper(); var model = PromosMockingSetup.DoMockingSetupForPromoModel(); // Act var entity = mapper.MapToEntity(model.Object); // Assert Assert.Equal(model.Object.Link, entity.Link); // Related Objects Assert.Equal(model.Object.PrimaryImageFileId, entity.PrimaryImageFileId); Assert.Equal(model.Object.AuthorId, entity.AuthorId); Assert.Equal(model.Object.ResourceTypeId, entity.ResourceTypeId); // Associated Objects // <None> }
public void Verify_MapToEntity_WithExistingEntity_AssignsPromoProperties() { // Arrange var mapper = new PromoMapper(); var model = PromosMockingSetup.DoMockingSetupForPromoModel(); // Act IPromo existingEntity = new Promo { Id = 1 }; mapper.MapToEntity(model.Object, ref existingEntity); // Assert Assert.Equal(model.Object.Link, existingEntity.Link); // Related Objects Assert.Equal(model.Object.PrimaryImageFileId, existingEntity.PrimaryImageFileId); Assert.Equal(model.Object.AuthorId, existingEntity.AuthorId); Assert.Equal(model.Object.ResourceTypeId, existingEntity.ResourceTypeId); // Associated Objects // <None> }