Пример #1
0
        protected void SetCostTabData(CostsTabData costTabData)
        {
            if (costTabData == null)
            {
                return;
            }

            ClickTab("Costs");

            if (costTabData.ClientAdjustments != null)
            {
                SetAdjustments(costTabData.ClientAdjustments);
            }

            if (costTabData.VendorAdjustments != null)
            {
                SetAdjustments(costTabData.VendorAdjustments, true);
            }
        }
Пример #2
0
 public void SetCost(string costType, CostsTabData costsTabData)
 {
     ClearInputAndTypeValue(_txtGenericCost(costType), costsTabData.Cost.Client);
 }