public IStudioModel Create(IStudioModel 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(StudioMapper.MapToSearchModel(model)); if (results.Any()) { return(results.First()); } // Return the first that matches // Map model to a new entity var newEntity = StudioMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it StudiosRepository.Add(newEntity); // Try to Save Changes StudiosRepository.SaveChanges(); // Return the new value return(Get(newEntity.Id)); }
public void Verify_MapToSearchModel_AssignsStudioSearchProperties() { // Arrange var mapper = new StudioMapper(); var model = StudiosMockingSetup.DoMockingSetupForStudioModel(); // Act var searchModel = mapper.MapToSearchModel(model.Object); // Assert }