generate tenant management proxies

pull/10010/head
mehmet-erim 4 years ago
parent 93383cdee1
commit 79181ee97c

@ -1,11 +1,7 @@
import type {
ExtensibleEntityDto,
ExtensibleObject,
PagedAndSortedResultRequestDto,
} from '@abp/ng.core';
import type { ExtensibleEntityDto, ExtensibleObject, PagedAndSortedResultRequestDto } from '@abp/ng.core';
export interface GetTenantsInput extends PagedAndSortedResultRequestDto {
filter: string;
filter?: string;
}
export interface TenantCreateDto extends TenantCreateOrUpdateDtoBase {
@ -18,8 +14,10 @@ export interface TenantCreateOrUpdateDtoBase extends ExtensibleObject {
}
export interface TenantDto extends ExtensibleEntityDto<string> {
name: string;
name?: string;
concurrencyStamp?: string;
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface TenantUpdateDto extends TenantCreateOrUpdateDtoBase {}
export interface TenantUpdateDto extends TenantCreateOrUpdateDtoBase {
concurrencyStamp?: string;
}

@ -1,7 +1,7 @@
import type { GetTenantsInput, TenantCreateDto, TenantDto, TenantUpdateDto } from './models';
import { RestService } from '@abp/ng.core';
import type { PagedResultDto } from '@abp/ng.core';
import { RestService } from '@abp/ng.core';
import { Injectable } from '@angular/core';
import type { GetTenantsInput, TenantCreateDto, TenantDto, TenantUpdateDto } from './models';
@Injectable({
providedIn: 'root',

Loading…
Cancel
Save