TimeTrackerController.convertSecToMinSec C# (CSharp) Method

convertSecToMinSec() private method

Converts the sec to minutes seconds.
private convertSecToMinSec ( int sec ) : string
sec int Sec.
return string
	string convertSecToMinSec(int sec) {

		int min = sec / 60;
		int rem = sec % 60;

		string s = min.ToString("00") + " Minutes and " + rem.ToString("00") + " Seconds";

		return s;

	}