public bool SetProductPhoto(int id, byte[] imageBt)
 {
     CreateRequest("PreSetProductPhoto", imageBt.Length);
     ClientAuction.SendMessageInBytes(imageBt);
     CreateRequest("SetProductPhoto", id);
     return(WaitResponse <bool>());
 }
 public async Task <bool> SetProductPhotoAsync(int id, byte[] imageBt)
 {
     CreateRequest("PreSetProductPhoto", imageBt.Length);
     ClientAuction.SendMessageInBytes(imageBt);
     CreateRequest("SetProductPhoto", id);
     return(await WaitResponseAsync <bool>());
 }