/// <summary>
 /// Post a new entity to EntitySet Jobs
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='jobDto'>
 /// The entity to post
 /// </param>
 public static void Post(this IJobs operations, JobDto jobDto)
 {
     operations.PostAsync(jobDto).GetAwaiter().GetResult();
 }