InvoiceMYOBPoster.cs 580 B

1234567891011121314151617181920212223
  1. using Comal.Classes;
  2. using InABox.Core;
  3. using InABox.Poster.MYOB;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace PRS.Shared.Posters.MYOB;
  10. public class InvoiceMYOBPoster : IMYOBPoster<Invoice>
  11. {
  12. public MYOBPosterSettings Settings { get; set; }
  13. public MYOBGlobalPosterSettings GlobalSettings { get; set; }
  14. public MYOBConnectionData ConnectionData { get; set; }
  15. public IPostResult<Invoice> Process(IDataModel<Invoice> model)
  16. {
  17. return new PostResult<Invoice>();
  18. }
  19. }