IFuelProductConfiguration.cs 286 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface IFuelProductConfiguration
  8. {
  9. int ProductId { get; }
  10. string Name { get; }
  11. string UnitOfMeasure { get; }
  12. }
  13. }