| 1234567891011121314151617181920 | 
							- using InABox.Core;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace InABox.Poster.MYOB;
 
- [Caption("MYOB")]
 
- public interface IMYOBPoster<TPostable, TSettings> : IPoster<TPostable, TSettings>, IGlobalSettingsPoster<MYOBGlobalPosterSettings>
 
-     where TPostable : Entity, IPostable, IRemotable, IPersistent, new()
 
-     where TSettings : MYOBPosterSettings
 
- {
 
-     public MYOBConnectionData ConnectionData { get; set; }
 
-     bool BeforePost(IDataModel<TPostable> model);
 
-     IPostResult<TPostable> Process(IDataModel<TPostable> model);
 
- }
 
 
  |