using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.Common.SaleAttribute {
|
public class SaleMain : ISaleOrderFactory {
|
public IBom CreateBom() {
|
return new BomSaleInfo();
|
}
|
|
public IGw CreateGw() {
|
return new GwSaleInfo();
|
}
|
|
public IPcb CreatePcb() {
|
return new PcbSaleInfo();
|
}
|
|
public ISmt CreateSmt() {
|
return new SmtSaleInfo();
|
}
|
}
|
}
|