blob: 5bb6a523cf6c93421521ab7d9164bbe72542e09f [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { Injectable } from '@angular/core';
import { Salutation } from '@shared/models';
/**
* Used to retrieve salutations
*
* @export
* @class SalutationsService
*/
@Injectable()
export class SalutationsService {
/**
* Transforms grid data recieved from the API into array of model instances
*
* @param response
*/
static gridAdapter(response: any): Array<Salutation> {
return response.map(salutation => new Salutation(salutation));
}
/**
* Transforms api reponse into model instance
*
* @param response
*/
static salutationAdapter(response: any): Salutation {
return new Salutation(response);
}
}