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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            MovieStoryArcsRepository.Add(newEntity);
            // Try to Save Changes
            MovieStoryArcsRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Beispiel #2
0
        public IMovieStoryArcModel Update(IMovieStoryArcModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = MovieStoryArcsRepository.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 (MovieStoryArcMapper.AreEqual(model, existingEntity))
            {
                return(MovieStoryArcMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            MovieStoryArcMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            MovieStoryArcsRepository.Update(MovieStoryArcMapper.MapToEntity(model));
            // Try to Save Changes
            MovieStoryArcsRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
Beispiel #3
0
 public virtual bool AreEqual(IMovieStoryArcModel model, IMovieStoryArc entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // MovieStoryArc Properties
            // <None>
            // Related Objects
            && model.MovieId == entity.MovieId &&
            model.StoryArcId == entity.StoryArcId
            );
 }
Beispiel #4
0
 public virtual void MapToEntity(IMovieStoryArcModel model, ref IMovieStoryArc entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // MovieStoryArc Properties
     // <None>
     // Related Objects
     entity.MovieId    = model.MovieId;
     entity.Movie      = (Movie)model.Movie?.MapToEntity();
     entity.StoryArcId = model.StoryArcId;
     entity.StoryArc   = (StoryArc)model.StoryArc?.MapToEntity();
     // Associated Objects
     // <None>
 }
Beispiel #5
0
        public virtual IMovieStoryArc MapToEntity(IMovieStoryArcModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <MovieStoryArc, IMovieStoryArcModel>(model);

            // MovieStoryArc Properties
            // <None>
            // Related Objects
            entity.MovieId    = model.MovieId;
            entity.Movie      = (Movie)model.Movie?.MapToEntity();
            entity.StoryArcId = model.StoryArcId;
            entity.StoryArc   = (StoryArc)model.StoryArc?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = MovieStoryArcsMockingSetup.DoMockingSetupForMovieStoryArc(1);
            var mockMovieStoryArcsRepository = MovieStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockMovieStoryArcsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow       = new MovieStoryArcsBusinessWorkflow(mockMovieStoryArcsRepository.Object, new MovieStoryArcMapper());
            var model                  = MovieStoryArcsMockingSetup.DoMockingSetupForMovieStoryArcModel(1);
            IMovieStoryArcModel 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 IMovieStoryArcModel Create(IMovieStoryArcModel 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(MovieStoryArcMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = MovieStoryArcMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     MovieStoryArcsRepository.Add(newEntity);
     // Try to Save Changes
     MovieStoryArcsRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
Beispiel #8
0
        public virtual IMovieStoryArcSearchModel MapToSearchModel(IMovieStoryArcModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IMovieStoryArcModel, MovieStoryArcSearchModel>(model);

            // Search Properties
            searchModel.MovieId                  = model.MovieId;
            searchModel.MovieCustomKey           = model.Movie?.CustomKey;
            searchModel.MovieApiDetailUrl        = model.Movie?.ApiDetailUrl;
            searchModel.MovieSiteDetailUrl       = model.Movie?.SiteDetailUrl;
            searchModel.MovieName                = model.Movie?.Name;
            searchModel.MovieShortDescription    = model.Movie?.ShortDescription;
            searchModel.MovieDescription         = model.Movie?.Description;
            searchModel.StoryArcId               = model.StoryArcId;
            searchModel.StoryArcCustomKey        = model.StoryArc?.CustomKey;
            searchModel.StoryArcApiDetailUrl     = model.StoryArc?.ApiDetailUrl;
            searchModel.StoryArcSiteDetailUrl    = model.StoryArc?.SiteDetailUrl;
            searchModel.StoryArcName             = model.StoryArc?.Name;
            searchModel.StoryArcShortDescription = model.StoryArc?.ShortDescription;
            searchModel.StoryArcDescription      = model.StoryArc?.Description;
            // Return Search Model
            return(searchModel);
        }
 public IMovieStoryArcModel Update(IMovieStoryArcModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = MovieStoryArcsRepository.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 (MovieStoryArcMapper.AreEqual(model, existingEntity))
     {
         return MovieStoryArcMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     MovieStoryArcMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     MovieStoryArcsRepository.Update(MovieStoryArcMapper.MapToEntity(model));
     // Try to Save Changes
     MovieStoryArcsRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
Beispiel #10
0
 public static bool AreEqual(this IMovieStoryArcModel model, IMovieStoryArc entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
Beispiel #11
0
 public static IMovieStoryArcSearchModel MapToSearchModel(this IMovieStoryArcModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
Beispiel #12
0
 public static void MapToEntity(this IMovieStoryArcModel model, ref IMovieStoryArc entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
Beispiel #13
0
 public static IMovieStoryArc MapToEntity(this IMovieStoryArcModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }