| | |
| | | 锘縰sing System; |
| | | 锘縰sing Org.BouncyCastle.Crypto; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | public OutboundOrderRepository(IUnitOfWorkManage unitOfWorkManage) : base(unitOfWorkManage) |
| | | { |
| | | } |
| | | public Dt_OutboundOrder GetStockInfo(int id) |
| | | { |
| | | return Db.Queryable<Dt_OutboundOrder>().Where(x => x.Id == id).Includes(x => x.Details).First(); |
| | | } |
| | | public List<Dt_OutboundOrder> GetStockInfos(List<int> ids) |
| | | { |
| | | return Db.Queryable<Dt_OutboundOrder>().Where(x => ids.Contains(x.Id)).Includes(x => x.Details).ToList(); |
| | | } |
| | | public override bool UpdateData(Dt_OutboundOrder entity) |
| | | { |
| | | return base.UpdateData(entity); |
| | | } |
| | | } |
| | | } |