public ITeamAppearedInIssueModel Update(ITeamAppearedInIssueModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = TeamAppearedInIssuesRepository.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 (TeamAppearedInIssueMapper.AreEqual(model, existingEntity)) { return(TeamAppearedInIssueMapper.MapToModel(existingEntity)); } // Map model to an existing entity TeamAppearedInIssueMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it TeamAppearedInIssuesRepository.Update(TeamAppearedInIssueMapper.MapToEntity(model)); // Try to Save Changes TeamAppearedInIssuesRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public ITeamAppearedInIssueModel Create(ITeamAppearedInIssueModel 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(TeamAppearedInIssueMapper.MapToSearchModel(model)); if (results.Any()) { return(results.First()); } // Return the first that matches // Map model to a new entity var newEntity = TeamAppearedInIssueMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it TeamAppearedInIssuesRepository.Add(newEntity); // Try to Save Changes TeamAppearedInIssuesRepository.SaveChanges(); // Return the new value return(Get(newEntity.Id)); }
public void Verify_MapToEntity_AssignsTeamAppearedInIssueProperties() { // Arrange var mapper = new TeamAppearedInIssueMapper(); var model = TeamAppearedInIssuesMockingSetup.DoMockingSetupForTeamAppearedInIssueModel(); // Act var entity = mapper.MapToEntity(model.Object); // Assert // <None> // Related Objects Assert.Equal(model.Object.TeamId, entity.TeamId); Assert.Equal(model.Object.IssueId, entity.IssueId); // Associated Objects // <None> }
public void Verify_MapToEntity_WithExistingEntity_AssignsTeamAppearedInIssueProperties() { // Arrange var mapper = new TeamAppearedInIssueMapper(); var model = TeamAppearedInIssuesMockingSetup.DoMockingSetupForTeamAppearedInIssueModel(); // Act ITeamAppearedInIssue existingEntity = new TeamAppearedInIssue { Id = 1 }; mapper.MapToEntity(model.Object, ref existingEntity); // Assert // <None> // Related Objects Assert.Equal(model.Object.TeamId, existingEntity.TeamId); Assert.Equal(model.Object.IssueId, existingEntity.IssueId); // Associated Objects // <None> }