EFCoreWebAPI.WeatherEvent.Create C# (CSharp) Method

Create() public static method

public static Create ( System.DateTime date, WeatherType type, System.Boolean hooray ) : WeatherEvent
date System.DateTime
type WeatherType
hooray System.Boolean
return WeatherEvent
        public static WeatherEvent Create(DateTime date, WeatherType type, Boolean hooray)
        {
            return new WeatherEvent(date, type, hooray);
        }

Same methods

WeatherEvent::Create ( System.DateTime date, WeatherType type, System.Boolean hooray, List reactions ) : WeatherEvent