public IEpisodeTeamModel Create(IEpisodeTeamModel 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(EpisodeTeamMapper.MapToSearchModel(model));

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

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

            // EpisodeTeam Properties
            // <None>
            // Related Objects
            entity.EpisodeId = model.EpisodeId;
            entity.Episode   = (Episode)model.Episode?.MapToEntity();
            entity.TeamId    = model.TeamId;
            entity.Team      = (Team)model.Team?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = EpisodeTeamsMockingSetup.DoMockingSetupForEpisodeTeam(1);
            var mockEpisodeTeamsRepository = EpisodeTeamsMockingSetup.DoMockingSetupForRepository();

            mockEpisodeTeamsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow     = new EpisodeTeamsBusinessWorkflow(mockEpisodeTeamsRepository.Object, new EpisodeTeamMapper());
            var model                = EpisodeTeamsMockingSetup.DoMockingSetupForEpisodeTeamModel(1);
            IEpisodeTeamModel 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);
        }
Example #10
0
        public virtual IEpisodeTeamSearchModel MapToSearchModel(IEpisodeTeamModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IEpisodeTeamModel, EpisodeTeamSearchModel>(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.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);
        }
Example #11
0
 public static bool AreEqual(this IEpisodeTeamModel model, IEpisodeTeam entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
Example #12
0
 public static IEpisodeTeamSearchModel MapToSearchModel(this IEpisodeTeamModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
Example #13
0
 public static void MapToEntity(this IEpisodeTeamModel model, ref IEpisodeTeam entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
Example #14
0
 public static IEpisodeTeam MapToEntity(this IEpisodeTeamModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public virtual IEpisodeTeamSearchModel MapToSearchModel(IEpisodeTeamModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IEpisodeTeamModel, EpisodeTeamSearchModel>(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.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;
 }