You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.Message.Enum;
- using System;
-
- namespace HBLConsole.Abstract
- {
- public abstract class AbstractMessageServer
- {
- public abstract void GetBatchingInfo<T>(T batchingInfo);
-
- public abstract void GetBatchingInfo(int ClientId);
-
- public abstract void AddOrder<T>(T orderInfo);
-
- public abstract void GetRecipeBom<T>(T recipeBomInfo);
-
- public abstract bool OrderStatusChange(string subOrderId, ORDER_STATUS status);
-
- public abstract void Chargeback<T>(T chargebackInfo);
-
- }
- }
|