Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

22 lignes
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. }