Commit a93f577a9a866c992bf0d389bfe3f28b738de974

Authored by Marcelo Puebla
1 parent 8a062eb236
Exists in master

Borradas interfaces

src/app/wrappers/categoria.ts
... ... @@ -1,8 +0,0 @@
1   -export interface Categoria {
2   - id: number,
3   - detalle: string,
4   - es_promocion: boolean,
5   - vigencia_desde: Date,
6   - vigencia_hasta: Date,
7   - ES_PEDIDO: boolean
8   -}
src/app/wrappers/sinonimo.ts
... ... @@ -1,10 +0,0 @@
1   -import { Producto } from './producto';
2   -
3   -export interface Sinonimo {
4   -
5   - ID_SIN: number,
6   - descripcion: string,
7   - productos: Producto[],
8   - productoPadre?: number;
9   - cantidad? : number;
10   -}