public static bool InsertNewBidding(tk_Bidding Bidding, ref string a_strErr) { if (ProjectPro.InsertBidding(Bidding, ref a_strErr) >= 1) { return(true); } else { return(false); } }
public static bool UpdateNewBidding(tk_Bidding Bidding, ref string a_strErr) { if (ProjectPro.UpdateBidding(Bidding, ref a_strErr) >= 2) { return(true); } else { return(false); } }
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); } }