summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole3/frontend/src/app/api/software-profile.service.ts
blob: 442d97a7979993d448ea3827833bf5f79f7d76c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Injectable } from '@angular/core';
import { HttpClient} from '@angular/common/http';

import { environment } from '../../environments/environment';
import { SoftwareProfile } from "../model/software-profile";
import { SoftwareProfileSerializer } from "../serializer/software-profile.serializer";

import {ResourceService} from "globunet-angular/core/providers/api/resource.service";


@Injectable({
	providedIn: 'root'
})
export class SoftwareProfileService extends ResourceService<SoftwareProfile> {

	constructor(http: HttpClient){
		super(http, environment.API_URL,"softwareProfiles", new SoftwareProfileSerializer());
	}

}