Esempio n. 1
0
 public ResponseModel Delete(Testimonial testimonial)
 {
     return _testimonialRepository.Delete(testimonial);
 }
Esempio n. 2
0
 public ResponseModel Insert(Testimonial testimonial)
 {
     return _testimonialRepository.Insert(testimonial);
 }
Esempio n. 3
0
 public ResponseModel Update(Testimonial testimonial)
 {
     return _testimonialRepository.Update(testimonial);
 }