Beispiel #1
0
        public IEpisodeLocationModel Create(IEpisodeLocationModel 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(EpisodeLocationMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            EpisodeLocationsRepository.Add(newEntity);
            // Try to Save Changes
            EpisodeLocationsRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Beispiel #2
0
        public IEpisodeLocationModel Update(IEpisodeLocationModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = EpisodeLocationsRepository.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 (EpisodeLocationMapper.AreEqual(model, existingEntity))
            {
                return(EpisodeLocationMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            EpisodeLocationMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            EpisodeLocationsRepository.Update(EpisodeLocationMapper.MapToEntity(model));
            // Try to Save Changes
            EpisodeLocationsRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
 public virtual bool AreEqual(IEpisodeLocationModel model, IEpisodeLocation entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // EpisodeLocation Properties
            // <None>
            // Related Objects
            && model.EpisodeId == entity.EpisodeId &&
            model.LocationId == entity.LocationId
            );
 }
 public virtual bool AreEqual(IEpisodeLocationModel model, IEpisodeLocation entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // EpisodeLocation Properties
         // <None>
         // Related Objects
         && model.EpisodeId == entity.EpisodeId
         && model.LocationId == entity.LocationId
         ;
 }
 public virtual void MapToEntity(IEpisodeLocationModel model, ref IEpisodeLocation entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // EpisodeLocation Properties
     // <None>
     // Related Objects
     entity.EpisodeId  = model.EpisodeId;
     entity.Episode    = (Episode)model.Episode?.MapToEntity();
     entity.LocationId = model.LocationId;
     entity.Location   = (Location)model.Location?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(IEpisodeLocationModel model, ref IEpisodeLocation entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // EpisodeLocation Properties
     // <None>
     // Related Objects
     entity.EpisodeId = model.EpisodeId;
     entity.Episode = (Episode)model.Episode?.MapToEntity();
     entity.LocationId = model.LocationId;
     entity.Location = (Location)model.Location?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IEpisodeLocation MapToEntity(IEpisodeLocationModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<EpisodeLocation, IEpisodeLocationModel>(model);
     // EpisodeLocation Properties
     // <None>
     // Related Objects
     entity.EpisodeId = model.EpisodeId;
     entity.Episode = (Episode)model.Episode?.MapToEntity();
     entity.LocationId = model.LocationId;
     entity.Location = (Location)model.Location?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
        public virtual IEpisodeLocation MapToEntity(IEpisodeLocationModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <EpisodeLocation, IEpisodeLocationModel>(model);

            // EpisodeLocation Properties
            // <None>
            // Related Objects
            entity.EpisodeId  = model.EpisodeId;
            entity.Episode    = (Episode)model.Episode?.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 = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocation(1);
            var mockEpisodeLocationsRepository = EpisodeLocationsMockingSetup.DoMockingSetupForRepository();

            mockEpisodeLocationsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow         = new EpisodeLocationsBusinessWorkflow(mockEpisodeLocationsRepository.Object, new EpisodeLocationMapper());
            var model                    = EpisodeLocationsMockingSetup.DoMockingSetupForEpisodeLocationModel(1);
            IEpisodeLocationModel 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 IEpisodeLocationModel Create(IEpisodeLocationModel 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(EpisodeLocationMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = EpisodeLocationMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     EpisodeLocationsRepository.Add(newEntity);
     // Try to Save Changes
     EpisodeLocationsRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
        public virtual IEpisodeLocationSearchModel MapToSearchModel(IEpisodeLocationModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IEpisodeLocationModel, EpisodeLocationSearchModel>(model);

            // Search Properties
            searchModel.EpisodeId                = model.EpisodeId;
            searchModel.EpisodeCustomKey         = model.Episode?.CustomKey;
            searchModel.EpisodeApiDetailUrl      = model.Episode?.ApiDetailUrl;
            searchModel.EpisodeSiteDetailUrl     = model.Episode?.SiteDetailUrl;
            searchModel.EpisodeName              = model.Episode?.Name;
            searchModel.EpisodeShortDescription  = model.Episode?.ShortDescription;
            searchModel.EpisodeDescription       = model.Episode?.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 IEpisodeLocationModel Update(IEpisodeLocationModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = EpisodeLocationsRepository.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 (EpisodeLocationMapper.AreEqual(model, existingEntity))
     {
         return EpisodeLocationMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     EpisodeLocationMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     EpisodeLocationsRepository.Update(EpisodeLocationMapper.MapToEntity(model));
     // Try to Save Changes
     EpisodeLocationsRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
 public static IEpisodeLocation MapToEntity(this IEpisodeLocationModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public static void MapToEntity(this IEpisodeLocationModel model, ref IEpisodeLocation entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
 public static IEpisodeLocationSearchModel MapToSearchModel(this IEpisodeLocationModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static bool AreEqual(this IEpisodeLocationModel model, IEpisodeLocation entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public virtual IEpisodeLocationSearchModel MapToSearchModel(IEpisodeLocationModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IEpisodeLocationModel, EpisodeLocationSearchModel>(model);
     // Search Properties
     searchModel.EpisodeId = model.EpisodeId;
     searchModel.EpisodeCustomKey = model.Episode?.CustomKey;
     searchModel.EpisodeApiDetailUrl = model.Episode?.ApiDetailUrl;
     searchModel.EpisodeSiteDetailUrl = model.Episode?.SiteDetailUrl;
     searchModel.EpisodeName = model.Episode?.Name;
     searchModel.EpisodeShortDescription = model.Episode?.ShortDescription;
     searchModel.EpisodeDescription = model.Episode?.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;
 }