public void UpdateOfferPrepForm(OfferPrepForm OfferPrepForm)
 {
     UnitOfWork.OfferPrepFormRepository.Update(OfferPrepForm);
 }
 public void DeleteOfferPrepForm(OfferPrepForm OfferPrepForm)
 {
     UnitOfWork.OfferPrepFormRepository.Delete(OfferPrepForm);
 }
 public void InsertOfferPrepForm(OfferPrepForm OfferPrepForm)
 {
     UnitOfWork.OfferPrepFormRepository.Insert(OfferPrepForm);
 }