src/modules/quran/quran.service.ts

Summary

Maintainability
A
35 mins
Test Coverage
import { Service } from "../../libs";

export class QuranService extends Service {

    public getSurahList(): JQuery.jqXHR {
        return this.http.get(this.api.get('quran', 'surah'));
    }

    public getSurah(surahId: number): JQuery.jqXHR {
        return this.http.get(this.api.get('quran', 'surah/' + surahId));
    }

}