Commit 910235af7e80cbd9770bb57130f9d91e5e1c8db9

Authored by Marcelo Puebla
1 parent 017d5e2435
Exists in master and in 1 other branch validar_pve

Creada interfaz.

Showing 1 changed file with 17 additions and 0 deletions   Show diff stats
src/app/wrappers/comanda.ts
... ... @@ -0,0 +1,17 @@
  1 +export interface ComandaDetalle {
  2 + id: number;
  3 + idcomanda: number;
  4 + codsec: number;
  5 + codart: number;
  6 + cantidad: number;
  7 + idarticulo: number;
  8 +}
  9 +
  10 +export interface Comanda {
  11 + id: number;
  12 + estado: number;
  13 + observacion: string;
  14 + fechainicioelaboracion: Date;
  15 + fechafinelaboracion: Date;
  16 + detalles: ComandaDetalle[];
  17 +}