22 lines
388 B
C#
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();
|
|
}
|
|
}
|