private void SetInterest(string OrderCode, float Amount) { PipCoin pc = new PipCoin(); pc.OrderCode = OrderCode; pc.Amount = Amount; //Tổng tiền bid pc.Type = 0; //Trạng thái chưa thanh toán pc.InterestByDay = pc.Amount / 30; //Tính tiền lãi mỗi ngày pc.DateCreate = DateTime.Now; PipCoinBLL pcBLL = new PipCoinBLL(); pcBLL.Insert(pc); }
public int Insert(PipCoin pc) { db = new BitcoinEntities(); db.PipCoins.Add(pc); return(db.SaveChanges()); }
public int Insert(PipCoin pc) { pcDAL = new PipCoinDAL(); return(pcDAL.Insert(pc)); }