BExIS.Security.Services.Objects.TaskManager.ExistsTaskId C# (CSharp) Method

ExistsTaskId() public method

public ExistsTaskId ( long id ) : bool
id long
return bool
        public bool ExistsTaskId(long id)
        {
            return TasksRepo.Get(id) != null ? true : false;
        }