Пример #1
0
 public void EditProductScheduleAttribute(ProductScheduleAttribute productScheduleAttributeToEdit)
 {
     productScheduleAttributeRepository.Update(productScheduleAttributeToEdit);
     SaveProductScheduleAttribute();
 }
Пример #2
0
 public IEnumerable <ValidationResult> CanAddProductScheduleAttribute(ProductScheduleAttribute productScheduleAttribute)
 {
     //    yield return new ValidationResult("ProductScheduleAttribute", "ErrorString");
     return(null);
 }
Пример #3
0
 public void CreateProductScheduleAttribute(ProductScheduleAttribute productScheduleAttribute)
 {
     productScheduleAttributeRepository.Add(productScheduleAttribute);
     SaveProductScheduleAttribute();
 }