C# Class CorvallisBusCoreNetCore.Models.DaysOfWeekUtils

Mostra file Open project: RikkiGibson/Corvallis-Bus-Server

Public Methods

Method Description
GetDaysOfWeek ( string days ) : DaysOfWeek

Gets all the days of the week contained in the input string using a regular expression.

IsToday ( DaysOfWeek days, DateTimeOffset currentTime ) : bool

Returns a value indicating whether the provided DaysOfWeek value is applicable today.

Private Methods

Method Description
ToDaysOfWeek ( DayOfWeek day ) : DaysOfWeek

There is a real reason to have this enum instead of just DayOfWeek-- it's useful to be able to OR days together the way we do.

ToDaysOfWeek ( string day ) : DaysOfWeek

Method Details

GetDaysOfWeek() public static method

Gets all the days of the week contained in the input string using a regular expression.
public static GetDaysOfWeek ( string days ) : DaysOfWeek
days string
return DaysOfWeek

IsToday() public static method

Returns a value indicating whether the provided DaysOfWeek value is applicable today.
public static IsToday ( DaysOfWeek days, DateTimeOffset currentTime ) : bool
days DaysOfWeek
currentTime DateTimeOffset
return bool