/// <summary>
 /// Replace entity in EntitySet Jobs
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='id'>
 /// key: Id
 /// </param>
 /// <param name='jobDto'>
 /// The entity to put
 /// </param>
 public static void PutById(this IJobs operations, long id, JobDto jobDto)
 {
     operations.PutByIdAsync(id, jobDto).GetAwaiter().GetResult();
 }