UNPKG

contensis-core-api

Version:

A dependency library used by contensis-delivery-api and contensis-management-api

13 lines (10 loc) 376 B
import { ContensisQueryOrderBy } from '..'; import { Ordering } from './Ordering'; export class OrderByFactory implements ContensisQueryOrderBy { asc(fieldName: string): ContensisQueryOrderBy { return (new Ordering()).asc(fieldName); } desc(fieldName: string): ContensisQueryOrderBy { return (new Ordering()).desc(fieldName); } }