Yrkki/cv-generator-fe

View on GitHub
src/app/classes/cv/cv.ts

Summary

Maintainability
A
0 mins
Test Coverage
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2018 Georgi Marinov
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
import { Cv as ICv } from './../../interfaces/cv/cv';
import { PersonalData } from './../../interfaces/cv/personal-data';
import { ProfessionalExperience } from './../../interfaces/cv/professional-experience';
import { Education } from './../../interfaces/cv/education';
import { Certification } from './../../interfaces/cv/certification';
import { Language } from './../../interfaces/cv/language';
import { Course } from './../../interfaces/cv/course';
import { Publication } from './../../interfaces/cv/publication';
import { Indexable } from '../indexable';

/**
 * CV class.
 * ~extends {@link Indexable}
 * ~implements {@link ICv}
 */
export class Cv extends Indexable implements ICv {
  /** The Personal data */
  'Personal data': PersonalData[];
  /** The Professional experience */
  'Professional experience': ProfessionalExperience[];
  /** The Education */
  'Education': Education[];
  /** The Certifications */
  'Certifications': Certification[];
  /** The Languages */
  'Languages': Language[];
  /** The Courses */
  'Courses': Course[];
  /** The Publications */
  'Publications': Publication[];
  /** The Countries visited */
  'Countries visited': string[];
}