WMSupplierTypeBLL.cs 623 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using LeaRun.Application.Service.WarehouseManage;
  7. using LeaRun.Util.WebControl;
  8. namespace LeaRun.Application.Busines.WarehouseManage
  9. {
  10. public class WMSupplierTypeBLL
  11. {
  12. private WMSupplierTypeService service = new WMSupplierTypeService();
  13. public String getSupplierTypeList(Pagination pagination)
  14. {
  15. return service.getSupplierTypeList(pagination);
  16. }
  17. public void SaveSupplierType(String Code,String Name)
  18. {
  19. }
  20. }
  21. }