private static FacilityType GetFacilityType(tblWarehouse warehouse)
        {
            FacilityType type;

            return(FacilityTypes.TryGetValue(warehouse.WhouseAbbr, out type) ? type : FacilityType.Internal);
        }