コード例 #1
0
 public void Create(BusinessPartner bp)
 {
     if (!string.IsNullOrEmpty(bp.PartnerType))
         ControlFactory.Create<WebList>("ParentTypeList").SelectByText(bp.PartnerType);
     if (!string.IsNullOrEmpty(bp.LegalName))
         ControlFactory.Create<WebEdit>("LegalNameEdit").Set(bp.LegalName);
     if (!string.IsNullOrEmpty(bp.ShortName))
         ControlFactory.Create<WebEdit>("ShortNameEdit").Set(bp.ShortName);
     if (!string.IsNullOrEmpty(bp.Parent))
         ControlFactory.Create<WebEdit>("ParentEdit").Set(bp.Parent);
     if (!string.IsNullOrEmpty(bp.DomicileCountry))
         ControlFactory.Create<WebEdit>("DomicileCountryEdit").Set(bp.DomicileCountry);
     ControlFactory.Create<WebLink>("SaveLink").Click();
 }
コード例 #2
0
 public void Create(BusinessPartner bp)
 {
     if (!string.IsNullOrEmpty(bp.PartnerType))
     {
         ControlFactory.Create <WebList>("ParentTypeList").SelectByText(bp.PartnerType);
     }
     if (!string.IsNullOrEmpty(bp.LegalName))
     {
         ControlFactory.Create <WebEdit>("LegalNameEdit").Set(bp.LegalName);
     }
     if (!string.IsNullOrEmpty(bp.ShortName))
     {
         ControlFactory.Create <WebEdit>("ShortNameEdit").Set(bp.ShortName);
     }
     if (!string.IsNullOrEmpty(bp.Parent))
     {
         ControlFactory.Create <WebEdit>("ParentEdit").Set(bp.Parent);
     }
     if (!string.IsNullOrEmpty(bp.DomicileCountry))
     {
         ControlFactory.Create <WebEdit>("DomicileCountryEdit").Set(bp.DomicileCountry);
     }
     ControlFactory.Create <WebLink>("SaveLink").Click();
 }