示例#1
0
 public static bool UpdateNewPrice(tk_Price Price, ref string a_strErr)
 {
     if (ProjectPro.UpdatePrice(Price, ref a_strErr) >= 2)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
示例#2
0
 public static bool InsertNewPriceFile(tk_Price Price, HttpFileCollection Filedata, ref string a_strErr)
 {
     if (ProjectPro.InsertPriceFile(Price, Filedata, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }