Table of Contents

Enum ProductCategory

Namespace
arolariu.Backend.Domain.Invoices.DDD.ValueObjects.Products
Assembly
arolariu.Backend.Domain.Invoices.dll

The invoice item category enum represents the available categories for an invoice item. This enum is used to categorize the invoice items. The categories are used to generate the invoice statistics.

public enum ProductCategory

Fields

NOT_DEFINED = 0

Not defined = the item category was not defined.

BAKED_GOODS = 100

Bakery = the item is a baked good.

GROCERIES = 200

Groceries = the item is a grocery.

DAIRY = 300

Dairy = the item is a dairy product.

MEAT = 400

Meat = the item is a meat product.

FISH = 500

Fish = the item is a fish product.

FRUITS = 600

Fruit = the item is a fruit product.

VEGETABLES = 700

Vegetables = the item is a vegetable product.

BEVERAGES = 800

Beverages = the item is a beverage product.

ALCOHOLIC_BEVERAGES = 900

Alcoholic beverages = the item is an alcoholic beverage product.

TOBACCO = 1000

Tobacco = the item is a tobacco product.

CLEANING_SUPPLIES = 1100

Cleaning supplies = the item is a cleaning supply product.

PERSONAL_CARE = 1200

Personal care = the item is a personal care product.

MEDICINE = 1300

Medicine = the item is a medicine product.

OTHER = 9999

Other = the item is not defined.