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

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

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

            // LocationAppearedInIssue Properties
            // <None>
            // Related Objects
            entity.LocationId        = model.LocationId;
            entity.Location          = (Location)model.Location?.MapToEntity();
            entity.AppearedInIssueId = model.AppearedInIssueId;
            entity.AppearedInIssue   = (Issue)model.AppearedInIssue?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssue(1);
            var mockLocationAppearedInIssuesRepository = LocationAppearedInIssuesMockingSetup.DoMockingSetupForRepository();

            mockLocationAppearedInIssuesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow = new LocationAppearedInIssuesBusinessWorkflow(mockLocationAppearedInIssuesRepository.Object, new LocationAppearedInIssueMapper());
            var model            = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel(1);
            ILocationAppearedInIssueModel 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 ILocationAppearedInIssueModel Create(ILocationAppearedInIssueModel 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(LocationAppearedInIssueMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = LocationAppearedInIssueMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     LocationAppearedInIssuesRepository.Add(newEntity);
     // Try to Save Changes
     LocationAppearedInIssuesRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
        public virtual ILocationAppearedInIssueSearchModel MapToSearchModel(ILocationAppearedInIssueModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <ILocationAppearedInIssueModel, LocationAppearedInIssueSearchModel>(model);

            // Search Properties
            searchModel.LocationId                      = model.LocationId;
            searchModel.LocationCustomKey               = model.Location?.CustomKey;
            searchModel.LocationApiDetailUrl            = model.Location?.ApiDetailUrl;
            searchModel.LocationSiteDetailUrl           = model.Location?.SiteDetailUrl;
            searchModel.LocationName                    = model.Location?.Name;
            searchModel.LocationShortDescription        = model.Location?.ShortDescription;
            searchModel.LocationDescription             = model.Location?.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 ILocationAppearedInIssue MapToEntity(this ILocationAppearedInIssueModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public ILocationAppearedInIssueModel Update(ILocationAppearedInIssueModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = LocationAppearedInIssuesRepository.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 (LocationAppearedInIssueMapper.AreEqual(model, existingEntity))
     {
         return LocationAppearedInIssueMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     LocationAppearedInIssueMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     LocationAppearedInIssuesRepository.Update(LocationAppearedInIssueMapper.MapToEntity(model));
     // Try to Save Changes
     LocationAppearedInIssuesRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
 public virtual ILocationAppearedInIssueSearchModel MapToSearchModel(ILocationAppearedInIssueModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<ILocationAppearedInIssueModel, LocationAppearedInIssueSearchModel>(model);
     // Search Properties
     searchModel.LocationId = model.LocationId;
     searchModel.LocationCustomKey = model.Location?.CustomKey;
     searchModel.LocationApiDetailUrl = model.Location?.ApiDetailUrl;
     searchModel.LocationSiteDetailUrl = model.Location?.SiteDetailUrl;
     searchModel.LocationName = model.Location?.Name;
     searchModel.LocationShortDescription = model.Location?.ShortDescription;
     searchModel.LocationDescription = model.Location?.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 ILocationAppearedInIssueModel model, ILocationAppearedInIssue entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public static ILocationAppearedInIssueSearchModel MapToSearchModel(this ILocationAppearedInIssueModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static void MapToEntity(this ILocationAppearedInIssueModel model, ref ILocationAppearedInIssue entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }