public async Task <TemplateProductFlat> PostTemplateFlatProduct([FromBody] TemplateProductFlat obj)
 {
     return(await _command.SaveToQueue(obj, this.VerifiedUserContext, this.VerifiedUserContext.SupplierID));
 }
 public async Task <HSBuyer> PostBuyer([FromBody] HSBuyer obj)
 {
     return(await _command.SaveToQueue(obj, this.VerifiedUserContext, obj.ID));
 }