Пример #1
0
        public IMovieTeamModel Create(IMovieTeamModel 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(MovieTeamMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            MovieTeamsRepository.Add(newEntity);
            // Try to Save Changes
            MovieTeamsRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Пример #2
0
        public IMovieTeamModel Update(IMovieTeamModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = MovieTeamsRepository.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 (MovieTeamMapper.AreEqual(model, existingEntity))
            {
                return(MovieTeamMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            MovieTeamMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            MovieTeamsRepository.Update(MovieTeamMapper.MapToEntity(model));
            // Try to Save Changes
            MovieTeamsRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
 public virtual bool AreEqual(IMovieTeamModel model, IMovieTeam entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // MovieTeam Properties
         // <None>
         // Related Objects
         && model.MovieId == entity.MovieId
         && model.TeamId == entity.TeamId
         ;
 }
Пример #4
0
 public virtual bool AreEqual(IMovieTeamModel model, IMovieTeam entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // MovieTeam Properties
            // <None>
            // Related Objects
            && model.MovieId == entity.MovieId &&
            model.TeamId == entity.TeamId
            );
 }
 public virtual void MapToEntity(IMovieTeamModel model, ref IMovieTeam entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // MovieTeam Properties
     // <None>
     // Related Objects
     entity.MovieId = model.MovieId;
     entity.Movie = (Movie)model.Movie?.MapToEntity();
     entity.TeamId = model.TeamId;
     entity.Team = (Team)model.Team?.MapToEntity();
     // Associated Objects
     // <None>
 }
Пример #6
0
 public virtual void MapToEntity(IMovieTeamModel model, ref IMovieTeam entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // MovieTeam Properties
     // <None>
     // Related Objects
     entity.MovieId = model.MovieId;
     entity.Movie   = (Movie)model.Movie?.MapToEntity();
     entity.TeamId  = model.TeamId;
     entity.Team    = (Team)model.Team?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IMovieTeam MapToEntity(IMovieTeamModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<MovieTeam, IMovieTeamModel>(model);
     // MovieTeam Properties
     // <None>
     // Related Objects
     entity.MovieId = model.MovieId;
     entity.Movie = (Movie)model.Movie?.MapToEntity();
     entity.TeamId = model.TeamId;
     entity.Team = (Team)model.Team?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
Пример #8
0
        public virtual IMovieTeam MapToEntity(IMovieTeamModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <MovieTeam, IMovieTeamModel>(model);

            // MovieTeam Properties
            // <None>
            // Related Objects
            entity.MovieId = model.MovieId;
            entity.Movie   = (Movie)model.Movie?.MapToEntity();
            entity.TeamId  = model.TeamId;
            entity.Team    = (Team)model.Team?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
Пример #9
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = MovieTeamsMockingSetup.DoMockingSetupForMovieTeam(1);
            var mockMovieTeamsRepository = MovieTeamsMockingSetup.DoMockingSetupForRepository();

            mockMovieTeamsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var             businessWorkflow = new MovieTeamsBusinessWorkflow(mockMovieTeamsRepository.Object, new MovieTeamMapper());
            var             model            = MovieTeamsMockingSetup.DoMockingSetupForMovieTeamModel(1);
            IMovieTeamModel 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);
        }
Пример #10
0
        public virtual IMovieTeamSearchModel MapToSearchModel(IMovieTeamModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IMovieTeamModel, MovieTeamSearchModel>(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.TeamId               = model.TeamId;
            searchModel.TeamCustomKey        = model.Team?.CustomKey;
            searchModel.TeamApiDetailUrl     = model.Team?.ApiDetailUrl;
            searchModel.TeamSiteDetailUrl    = model.Team?.SiteDetailUrl;
            searchModel.TeamName             = model.Team?.Name;
            searchModel.TeamShortDescription = model.Team?.ShortDescription;
            searchModel.TeamDescription      = model.Team?.Description;
            // Return Search Model
            return(searchModel);
        }
 public virtual IMovieTeamSearchModel MapToSearchModel(IMovieTeamModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IMovieTeamModel, MovieTeamSearchModel>(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.TeamId = model.TeamId;
     searchModel.TeamCustomKey = model.Team?.CustomKey;
     searchModel.TeamApiDetailUrl = model.Team?.ApiDetailUrl;
     searchModel.TeamSiteDetailUrl = model.Team?.SiteDetailUrl;
     searchModel.TeamName = model.Team?.Name;
     searchModel.TeamShortDescription = model.Team?.ShortDescription;
     searchModel.TeamDescription = model.Team?.Description;
     // Return Search Model
     return searchModel;
 }
Пример #12
0
 public static bool AreEqual(this IMovieTeamModel model, IMovieTeam entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
Пример #13
0
 public static IMovieTeamSearchModel MapToSearchModel(this IMovieTeamModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
Пример #14
0
 public static void MapToEntity(this IMovieTeamModel model, ref IMovieTeam entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
Пример #15
0
 public static IMovieTeam MapToEntity(this IMovieTeamModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }