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