public void InsertVendorInformation(VendorInformationBo vendorInfo)
 {
     VendorInformationRepository.InsertVendorInformation(vendorInfo.ToVendorInformationDbModel());
 }
 public VendorInformationBo GetVendorInformation(Guid id)
 {
     return(VendorInformationRepository.GetVendorInformation(id).ToVendorInformationBo());
 }
 public void DropVendorInformation()
 {
     VendorInformationRepository.DropDb();
 }