private string GetStatus(int?statusId) { if (statusId.HasValue) { return(_statusProvider.GetStatusName(statusId.Value)); } else { return(null); } }