Exemplo n.º 1
0
        public Bus_Payment_Order GetInfoByBusPaymentOrderId(int id)
        {
            Bus_Payment_Order busPayment_Info = DbSet.Single(uid => uid.Id.Equals(id));

            return(busPayment_Info);
        }
Exemplo n.º 2
0
 public void Add(Bus_Payment_Order obj)
 {
     DbSet.Add(obj);
 }
Exemplo n.º 3
0
 public void Update(Bus_Payment_Order obj)
 {
     DbSet.Update(obj);
 }
Exemplo n.º 4
0
        public Bus_Payment_Order GetInfoByRepair_InfoId(int id)
        {
            Bus_Payment_Order busPayment_Info = DbSet.Single(uid => uid.Repair_InfoId == id && uid.status == "0");

            return(busPayment_Info);
        }