CapRaffle.Models.Extensions.Success C# (CSharp) Method

Success() public static method

public static Success ( this controller, string message ) : void
controller this
message string
return void
        public static void Success(this Controller controller, string message)
        {
            controller.TempData["Success"] = message;
        }