| 1234567891011121314151617181920212223 | using Comal.Classes;using InABox.Core;using InABox.Poster.MYOB;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace PRS.Shared.Posters.MYOB;public class InvoiceMYOBPoster : IMYOBPoster<Invoice>{    public MYOBPosterSettings Settings { get; set; }    public MYOBGlobalPosterSettings GlobalSettings { get; set; }    public MYOBConnectionData ConnectionData { get; set; }    public IPostResult<Invoice> Process(IDataModel<Invoice> model)    {        return new PostResult<Invoice>();    }}
 |