import { PostServiceM3 } from "../../ConexionSQL/posts.service"; import { M3PrecListPrecios } from "../Maestro/m3-prec-list-precios.type"; export declare class ServiceListaPrecio { private goData; private gsIdKatios; private lPreciosSelected; constructor(loged_user: any, sIdProceso: string); GetListaPrecios(PostServiceM3: PostServiceM3, IdKatios: string): Promise; /** * Guardar la lista de precios teniendo en cuenta la llave: RegPrecio + idkatios */ SaveLPreciosInStorage(lPrecio: any, gsIdkatios: string): void; /** * Guardar la lista de precios teniendo en cuenta la llave: RegPrecio + idkatios */ SaveConfigLPreciosInStorage(lPrecio: any, gsIdkatios: string): void; /*** * Obtener lista de precios desde storage teniendo en cuenta la llave: RegPrecio + idkatios */ GetLPreciosInStorage(gsIdkatios: string): any; GetConfigLPreciosInStorage(gsIdkatios: string): any; FindLPrecio(oListPrecLP: M3PrecListPrecios): void; ValidarAPLRegla(oListPrecLP: M3PrecListPrecios): boolean; Compare(value1: any, value2: any): boolean; GetConfigListaPrecios(PostServiceM3: PostServiceM3, IdKatios: string): Promise; }