public void EditProductScheduleAttributeMapping(ProductScheduleAttributeMapping productScheduleAttributeMappingToEdit)
 {
     productScheduleAttributeMappingRepository.Update(productScheduleAttributeMappingToEdit);
     SaveProductScheduleAttributeMapping();
 }
 public IEnumerable <ValidationResult> CanAddProductScheduleAttributeMapping(ProductScheduleAttributeMapping productScheduleAttributeMapping)
 {
     //    yield return new ValidationResult("ProductScheduleAttributeMapping", "ErrorString");
     return(null);
 }
 public void CreateProductScheduleAttributeMapping(ProductScheduleAttributeMapping productScheduleAttributeMapping)
 {
     productScheduleAttributeMappingRepository.Add(productScheduleAttributeMapping);
     SaveProductScheduleAttributeMapping();
 }