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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            ConceptMoviesRepository.Add(newEntity);
            // Try to Save Changes
            ConceptMoviesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
 public virtual bool AreEqual(IConceptMovieModel model, IConceptMovie entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // ConceptMovie Properties
         // <None>
         // Related Objects
         && model.ConceptId == entity.ConceptId
         && model.MovieId == entity.MovieId
         ;
 }
Example #4
0
 public virtual bool AreEqual(IConceptMovieModel model, IConceptMovie entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // ConceptMovie Properties
            // <None>
            // Related Objects
            && model.ConceptId == entity.ConceptId &&
            model.MovieId == entity.MovieId
            );
 }
 public virtual void MapToEntity(IConceptMovieModel model, ref IConceptMovie entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // ConceptMovie Properties
     // <None>
     // Related Objects
     entity.ConceptId = model.ConceptId;
     entity.Concept = (Concept)model.Concept?.MapToEntity();
     entity.MovieId = model.MovieId;
     entity.Movie = (Movie)model.Movie?.MapToEntity();
     // Associated Objects
     // <None>
 }
Example #6
0
 public virtual void MapToEntity(IConceptMovieModel model, ref IConceptMovie entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // ConceptMovie Properties
     // <None>
     // Related Objects
     entity.ConceptId = model.ConceptId;
     entity.Concept   = (Concept)model.Concept?.MapToEntity();
     entity.MovieId   = model.MovieId;
     entity.Movie     = (Movie)model.Movie?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IConceptMovie MapToEntity(IConceptMovieModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<ConceptMovie, IConceptMovieModel>(model);
     // ConceptMovie Properties
     // <None>
     // Related Objects
     entity.ConceptId = model.ConceptId;
     entity.Concept = (Concept)model.Concept?.MapToEntity();
     entity.MovieId = model.MovieId;
     entity.Movie = (Movie)model.Movie?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
Example #8
0
        public virtual IConceptMovie MapToEntity(IConceptMovieModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <ConceptMovie, IConceptMovieModel>(model);

            // ConceptMovie Properties
            // <None>
            // Related Objects
            entity.ConceptId = model.ConceptId;
            entity.Concept   = (Concept)model.Concept?.MapToEntity();
            entity.MovieId   = model.MovieId;
            entity.Movie     = (Movie)model.Movie?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
Example #9
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = ConceptMoviesMockingSetup.DoMockingSetupForConceptMovie(1);
            var mockConceptMoviesRepository = ConceptMoviesMockingSetup.DoMockingSetupForRepository();

            mockConceptMoviesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow      = new ConceptMoviesBusinessWorkflow(mockConceptMoviesRepository.Object, new ConceptMovieMapper());
            var model                 = ConceptMoviesMockingSetup.DoMockingSetupForConceptMovieModel(1);
            IConceptMovieModel 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 IConceptMovieModel Create(IConceptMovieModel 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(ConceptMovieMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = ConceptMovieMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     ConceptMoviesRepository.Add(newEntity);
     // Try to Save Changes
     ConceptMoviesRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
Example #11
0
        public virtual IConceptMovieSearchModel MapToSearchModel(IConceptMovieModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IConceptMovieModel, ConceptMovieSearchModel>(model);

            // Search Properties
            searchModel.ConceptId               = model.ConceptId;
            searchModel.ConceptCustomKey        = model.Concept?.CustomKey;
            searchModel.ConceptApiDetailUrl     = model.Concept?.ApiDetailUrl;
            searchModel.ConceptSiteDetailUrl    = model.Concept?.SiteDetailUrl;
            searchModel.ConceptName             = model.Concept?.Name;
            searchModel.ConceptShortDescription = model.Concept?.ShortDescription;
            searchModel.ConceptDescription      = model.Concept?.Description;
            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;
            // Return Search Model
            return(searchModel);
        }
Example #12
0
 public static bool AreEqual(this IConceptMovieModel model, IConceptMovie entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
Example #13
0
 public static IConceptMovieSearchModel MapToSearchModel(this IConceptMovieModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
Example #14
0
 public static void MapToEntity(this IConceptMovieModel model, ref IConceptMovie entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
Example #15
0
 public static IConceptMovie MapToEntity(this IConceptMovieModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public virtual IConceptMovieSearchModel MapToSearchModel(IConceptMovieModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IConceptMovieModel, ConceptMovieSearchModel>(model);
     // Search Properties
     searchModel.ConceptId = model.ConceptId;
     searchModel.ConceptCustomKey = model.Concept?.CustomKey;
     searchModel.ConceptApiDetailUrl = model.Concept?.ApiDetailUrl;
     searchModel.ConceptSiteDetailUrl = model.Concept?.SiteDetailUrl;
     searchModel.ConceptName = model.Concept?.Name;
     searchModel.ConceptShortDescription = model.Concept?.ShortDescription;
     searchModel.ConceptDescription = model.Concept?.Description;
     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;
     // Return Search Model
     return searchModel;
 }
 public IConceptMovieModel Update(IConceptMovieModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = ConceptMoviesRepository.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 (ConceptMovieMapper.AreEqual(model, existingEntity))
     {
         return ConceptMovieMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     ConceptMovieMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     ConceptMoviesRepository.Update(ConceptMovieMapper.MapToEntity(model));
     // Try to Save Changes
     ConceptMoviesRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }