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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            ObjectAppearedInIssuesRepository.Add(newEntity);
            // Try to Save Changes
            ObjectAppearedInIssuesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
 public virtual bool AreEqual(IObjectAppearedInIssueModel model, IObjectAppearedInIssue entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // ObjectAppearedInIssue Properties
         // <None>
         // Related Objects
         && model.ObjectId == entity.ObjectId
         && model.AppearedInIssueId == entity.AppearedInIssueId
         ;
 }
 public virtual bool AreEqual(IObjectAppearedInIssueModel model, IObjectAppearedInIssue entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // ObjectAppearedInIssue Properties
            // <None>
            // Related Objects
            && model.ObjectId == entity.ObjectId &&
            model.AppearedInIssueId == entity.AppearedInIssueId
            );
 }
 public virtual void MapToEntity(IObjectAppearedInIssueModel model, ref IObjectAppearedInIssue entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // ObjectAppearedInIssue Properties
     // <None>
     // Related Objects
     entity.ObjectId = model.ObjectId;
     entity.Object = (Object)model.Object?.MapToEntity();
     entity.AppearedInIssueId = model.AppearedInIssueId;
     entity.AppearedInIssue = (Issue)model.AppearedInIssue?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(IObjectAppearedInIssueModel model, ref IObjectAppearedInIssue entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // ObjectAppearedInIssue Properties
     // <None>
     // Related Objects
     entity.ObjectId          = model.ObjectId;
     entity.Object            = (Object)model.Object?.MapToEntity();
     entity.AppearedInIssueId = model.AppearedInIssueId;
     entity.AppearedInIssue   = (Issue)model.AppearedInIssue?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IObjectAppearedInIssue MapToEntity(IObjectAppearedInIssueModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<ObjectAppearedInIssue, IObjectAppearedInIssueModel>(model);
     // ObjectAppearedInIssue Properties
     // <None>
     // Related Objects
     entity.ObjectId = model.ObjectId;
     entity.Object = (Object)model.Object?.MapToEntity();
     entity.AppearedInIssueId = model.AppearedInIssueId;
     entity.AppearedInIssue = (Issue)model.AppearedInIssue?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
        public virtual IObjectAppearedInIssue MapToEntity(IObjectAppearedInIssueModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <ObjectAppearedInIssue, IObjectAppearedInIssueModel>(model);

            // ObjectAppearedInIssue Properties
            // <None>
            // Related Objects
            entity.ObjectId          = model.ObjectId;
            entity.Object            = (Object)model.Object?.MapToEntity();
            entity.AppearedInIssueId = model.AppearedInIssueId;
            entity.AppearedInIssue   = (Issue)model.AppearedInIssue?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
Esempio n. 9
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = ObjectAppearedInIssuesMockingSetup.DoMockingSetupForObjectAppearedInIssue(1);
            var mockObjectAppearedInIssuesRepository = ObjectAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

            mockObjectAppearedInIssuesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow = new ObjectAppearedInIssuesBusinessWorkflow(mockObjectAppearedInIssuesRepository.Object, new ObjectAppearedInIssueMapper());
            var model            = ObjectAppearedInIssuesMockingSetup.DoMockingSetupForObjectAppearedInIssueModel(1);
            IObjectAppearedInIssueModel 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 virtual IObjectAppearedInIssueSearchModel MapToSearchModel(IObjectAppearedInIssueModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IObjectAppearedInIssueModel, ObjectAppearedInIssueSearchModel>(model);

            // Search Properties
            searchModel.ObjectId                        = model.ObjectId;
            searchModel.ObjectCustomKey                 = model.Object?.CustomKey;
            searchModel.ObjectApiDetailUrl              = model.Object?.ApiDetailUrl;
            searchModel.ObjectSiteDetailUrl             = model.Object?.SiteDetailUrl;
            searchModel.ObjectName                      = model.Object?.Name;
            searchModel.ObjectShortDescription          = model.Object?.ShortDescription;
            searchModel.ObjectDescription               = model.Object?.Description;
            searchModel.AppearedInIssueId               = model.AppearedInIssueId;
            searchModel.AppearedInIssueCustomKey        = model.AppearedInIssue?.CustomKey;
            searchModel.AppearedInIssueApiDetailUrl     = model.AppearedInIssue?.ApiDetailUrl;
            searchModel.AppearedInIssueSiteDetailUrl    = model.AppearedInIssue?.SiteDetailUrl;
            searchModel.AppearedInIssueName             = model.AppearedInIssue?.Name;
            searchModel.AppearedInIssueShortDescription = model.AppearedInIssue?.ShortDescription;
            searchModel.AppearedInIssueDescription      = model.AppearedInIssue?.Description;
            // Return Search Model
            return(searchModel);
        }
 public virtual IObjectAppearedInIssueSearchModel MapToSearchModel(IObjectAppearedInIssueModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IObjectAppearedInIssueModel, ObjectAppearedInIssueSearchModel>(model);
     // Search Properties
     searchModel.ObjectId = model.ObjectId;
     searchModel.ObjectCustomKey = model.Object?.CustomKey;
     searchModel.ObjectApiDetailUrl = model.Object?.ApiDetailUrl;
     searchModel.ObjectSiteDetailUrl = model.Object?.SiteDetailUrl;
     searchModel.ObjectName = model.Object?.Name;
     searchModel.ObjectShortDescription = model.Object?.ShortDescription;
     searchModel.ObjectDescription = model.Object?.Description;
     searchModel.AppearedInIssueId = model.AppearedInIssueId;
     searchModel.AppearedInIssueCustomKey = model.AppearedInIssue?.CustomKey;
     searchModel.AppearedInIssueApiDetailUrl = model.AppearedInIssue?.ApiDetailUrl;
     searchModel.AppearedInIssueSiteDetailUrl = model.AppearedInIssue?.SiteDetailUrl;
     searchModel.AppearedInIssueName = model.AppearedInIssue?.Name;
     searchModel.AppearedInIssueShortDescription = model.AppearedInIssue?.ShortDescription;
     searchModel.AppearedInIssueDescription = model.AppearedInIssue?.Description;
     // Return Search Model
     return searchModel;
 }
 public static bool AreEqual(this IObjectAppearedInIssueModel model, IObjectAppearedInIssue entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public static IObjectAppearedInIssueSearchModel MapToSearchModel(this IObjectAppearedInIssueModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static void MapToEntity(this IObjectAppearedInIssueModel model, ref IObjectAppearedInIssue entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
 public static IObjectAppearedInIssue MapToEntity(this IObjectAppearedInIssueModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }