void IPartnerService.Delete(Src.Partner.Partner pPartner)
 {
     _repository.Delete(pPartner);
 }
 void IPartnerService.Update(Src.Partner.Partner pPartner)
 {
     _repository.Update(pPartner);
 }
 public void UpdateID(Src.Partner.Partner pPartner, int pNewID)
 {
     _repository.UpdateID(pPartner, pNewID);
 }
 IEnumerable <Src.Partner.Partner> IPartnerService.FindAll(Src.Partner.Partner pPartner)
 {
     return(_repository.FindAll(pPartner));
 }
 void IPartnerService.Insert(Src.Partner.Partner pPartner)
 {
     pPartner.Id = _repository.GetNextId();
     _repository.Insert(pPartner);
 }
 Src.Partner.Partner IPartnerService.Find(Src.Partner.Partner pPartner)
 {
     throw new System.NotImplementedException();
 }
 bool IPartnerService.Exists(Src.Partner.Partner pPartner)
 {
     throw new System.NotImplementedException();
 }
 public void Delete(Src.Partner.Partner pPartner)
 {
     _repository.Delete(pPartner);
 }
 public void Update(Src.Partner.Partner pPartner)
 {
     throw new System.NotImplementedException();
 }
 public IEnumerable <Src.Partner.Partner> FindAll(Src.Partner.Partner pPartner)
 {
     return(_repository.FindAll(pPartner));
 }
 public Src.Partner.Partner Find(Src.Partner.Partner pPartner)
 {
     throw new System.NotImplementedException();
 }
 public bool Exists(Src.Partner.Partner pPartner)
 {
     throw new System.NotImplementedException();
 }