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.
 
 

22 lines
535 B

  1. using BPA.Message.Enum;
  2. using System;
  3. namespace HBLConsole.Abstract
  4. {
  5. public abstract class AbstractMessageServer
  6. {
  7. public abstract void GetBatchingInfo<T>(T batchingInfo);
  8. public abstract void GetBatchingInfo(int ClientId);
  9. public abstract void AddOrder<T>(T orderInfo);
  10. public abstract void GetRecipeBom<T>(T recipeBomInfo);
  11. public abstract bool OrderStatusChange(string subOrderId, ORDER_STATUS status);
  12. public abstract void Chargeback<T>(T chargebackInfo);
  13. }
  14. }