export interface IProduction {
    from: string;
    to: string;
    unitPrice: number;
    unitPriceVAT: number;
    production: number;
    productionUnit: string;
    profit: number;
    currency: string;
}
