示例#1
0
 public static bool InsertNewBidding(tk_Bidding Bidding, ref string a_strErr)
 {
     if (ProjectPro.InsertBidding(Bidding, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
示例#2
0
 public static bool UpdateNewBidding(tk_Bidding Bidding, ref string a_strErr)
 {
     if (ProjectPro.UpdateBidding(Bidding, ref a_strErr) >= 2)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
示例#3
0
 public static bool InsertNewBiddingFile(tk_Bidding Bidding, HttpFileCollection Filedata, ref string a_strErr)
 {
     if (ProjectPro.InsertBiddingFile(Bidding, Filedata, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }