2024-08-29 14:13:29 +08:00

22 lines
388 B
C#

using System;
using DOAN.Model;
using DOAN.Model.MES.base_.Dto;
using DOAN.Model.MES.base_;
using System.Collections.Generic;
namespace DOAN.Service.MES.ERP.IService
{
public interface IInteractERPService
{
int SynhERPCustom();
int SynchERPVendor();
int SynchERPInventoryClass();
int SynchERPInventory();
int SynchERPBOM();
}
}