public List <T> SkipTake <T>(long skip, long take, Sql sql)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.SkipTake <T>(skip, take, sql)));
 }
 public List <T> SkipTake <T>(long skip, long take, string sql, params object[] args)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.SkipTake <T>(skip, take, sql, args)));
 }