private Tuple <string, string> GetPath() { if (TempName.IsNullOrEmpty() || TempType.IsNullOrEmpty()) { return(null); } var tuple = GetPath(SiteName, TempName, TempType); if (tuple.IsNull()) { return(null); } return(tuple); }