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

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

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

            // SeriesLocation Properties
            // <None>
            // Related Objects
            entity.SeriesId   = model.SeriesId;
            entity.Series     = (Series)model.Series?.MapToEntity();
            entity.LocationId = model.LocationId;
            entity.Location   = (Location)model.Location?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocation(1);
            var mockSeriesLocationsRepository = SeriesLocationsMockingSetup.DoMockingSetupForRepository();

            mockSeriesLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow        = new SeriesLocationsBusinessWorkflow(mockSeriesLocationsRepository.Object, new SeriesLocationMapper());
            var model                   = SeriesLocationsMockingSetup.DoMockingSetupForSeriesLocationModel(1);
            ISeriesLocationModel 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 ISeriesLocationModel Create(ISeriesLocationModel 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(SeriesLocationMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = SeriesLocationMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     SeriesLocationsRepository.Add(newEntity);
     // Try to Save Changes
     SeriesLocationsRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
        public virtual ISeriesLocationSearchModel MapToSearchModel(ISeriesLocationModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <ISeriesLocationModel, SeriesLocationSearchModel>(model);

            // Search Properties
            searchModel.SeriesId                 = model.SeriesId;
            searchModel.SeriesCustomKey          = model.Series?.CustomKey;
            searchModel.SeriesApiDetailUrl       = model.Series?.ApiDetailUrl;
            searchModel.SeriesSiteDetailUrl      = model.Series?.SiteDetailUrl;
            searchModel.SeriesName               = model.Series?.Name;
            searchModel.SeriesShortDescription   = model.Series?.ShortDescription;
            searchModel.SeriesDescription        = model.Series?.Description;
            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;
            // Return Search Model
            return(searchModel);
        }
 public virtual ISeriesLocationSearchModel MapToSearchModel(ISeriesLocationModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<ISeriesLocationModel, SeriesLocationSearchModel>(model);
     // Search Properties
     searchModel.SeriesId = model.SeriesId;
     searchModel.SeriesCustomKey = model.Series?.CustomKey;
     searchModel.SeriesApiDetailUrl = model.Series?.ApiDetailUrl;
     searchModel.SeriesSiteDetailUrl = model.Series?.SiteDetailUrl;
     searchModel.SeriesName = model.Series?.Name;
     searchModel.SeriesShortDescription = model.Series?.ShortDescription;
     searchModel.SeriesDescription = model.Series?.Description;
     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;
     // Return Search Model
     return searchModel;
 }
 public ISeriesLocationModel Update(ISeriesLocationModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = SeriesLocationsRepository.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 (SeriesLocationMapper.AreEqual(model, existingEntity))
     {
         return SeriesLocationMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     SeriesLocationMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     SeriesLocationsRepository.Update(SeriesLocationMapper.MapToEntity(model));
     // Try to Save Changes
     SeriesLocationsRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
 public static ISeriesLocation MapToEntity(this ISeriesLocationModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public static bool AreEqual(this ISeriesLocationModel model, ISeriesLocation entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public static ISeriesLocationSearchModel MapToSearchModel(this ISeriesLocationModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static void MapToEntity(this ISeriesLocationModel model, ref ISeriesLocation entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }