/// <summary>
 /// Create the new elastic pool
 /// </summary>
 /// <param name="entity">The output of apply user input to model</param>
 /// <returns>The input entity</returns>
 protected override IEnumerable <AzureSqlElasticPoolModel> PersistChanges(IEnumerable <AzureSqlElasticPoolModel> entity)
 {
     return(new List <AzureSqlElasticPoolModel>()
     {
         ModelAdapter.CreateElasticPool(entity.First())
     });
 }