// Angular Core
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';

// Services
import { ApiService } from '../api/api.service';

@Injectable({
  providedIn: 'root'
})
export class TutorialsService {

  constructor(private http: HttpClient, public api: ApiService) { }
  /**
  * Gets Video Tutorials Info
  * @returns {object} promise
  */
  getVideoInfo() {
    return this.api.read('/Tutorials');
  };
}
