对比新文件 |
| | |
| | | 锘縩amespace WIDESEA_StorageOutOrderServices; |
| | | |
| | | public class Dt_OutOrderProductionService : ServiceBase<Dt_OutOrderProduction, IDt_OutOrderProductionRepository>, IDt_OutOrderProductionService |
| | | { |
| | | private readonly IUnitOfWorkManage _unitOfWorkManage; |
| | | |
| | | public Dt_OutOrderProductionService(IDt_OutOrderProductionRepository BaseDal, IUnitOfWorkManage unitOfWorkManage) : base(BaseDal) |
| | | { |
| | | _unitOfWorkManage = unitOfWorkManage; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 鎻掑叆鏁版嵁杩斿洖涓婚敭 |
| | | /// </summary> |
| | | /// <param name="production">瀹炰綋鏁版嵁</param> |
| | | /// <returns>涓婚敭ID</returns> |
| | | public int AddOrderProduction(Dt_OutOrderProduction production) |
| | | { |
| | | return BaseDal.AddData(production); |
| | | } |
| | | } |