1234567891011121314151617 |
- using InABox.Integration.Logikal;
- namespace PRSDesktop.Integrations.Logikal;
- public class LogikalProductGroup : ILogikalProductGroup
- {
- public string Code { get; set; }
- public string Description { get; set; }
-
- public static string SQL = $@"
- select distinct
- cast(d.[DiscountGroup] as text) as {nameof(Code)},
- d.[name] as {nameof(Description)}
- from
- EstimationDiscounts d
- ";
- }
|