ITimeU.Models.Timer.CreateTimer C# (CSharp) Method

CreateTimer() public static method

Create a new Timer object.
public static CreateTimer ( global timerID, global isDeleted ) : Timer
timerID global Initial value of the TimerID property.
isDeleted global Initial value of the IsDeleted property.
return Timer
        public static Timer CreateTimer(global::System.Int32 timerID, global::System.Boolean isDeleted)
        {
            Timer timer = new Timer();
            timer.TimerID = timerID;
            timer.IsDeleted = isDeleted;
            return timer;
        }