Although the Jobs module does not support content lifecycle, the implementation of the interface is mandatory for the manager class. Following is the default implementation of the members:
public JobApplication CheckIn(JobApplication item)
{
throw new NotImplementedException();
}
public JobApplication CheckOut(JobApplication item)
{
throw new NotImplementedException();
}
public void Copy(JobApplication source, JobApplication destination)
{
throw new NotImplementedException();
}
public JobApplication Edit(JobApplication item)
{
throw new NotImplementedException();
}
public Guid GetCheckedOutBy(JobApplication item)
{
throw new NotImplementedException();
}
public JobApplication GetLive(JobApplication cnt)
{
throw new NotImplementedException();
}
public JobApplication GetMaster(JobApplication cnt)
{
throw new NotImplementedException();
}
public JobApplication GetTemp(JobApplication cnt)
{
throw new NotImplementedException();
}
public bool IsCheckedOut(JobApplication item)
{
throw new NotImplementedException();
}
public bool IsCheckedOutBy(JobApplication item, Guid userId)
{
throw new NotImplementedException();
}
public JobApplication Publish(JobApplication item)
{
throw new NotImplementedException();
}
public JobApplication Schedule(JobApplication item, DateTime publicationDate, DateTime? expirationDate)
{
throw new NotImplementedException();
}
public JobApplication Unpublish(JobApplication item)
{
throw new NotImplementedException();
}
public Content CheckIn(Content item)
{
throw new NotImplementedException();
}
public Content CheckOut(Content item)
{
throw new NotImplementedException();
}
public void Copy(Content source, Content destination)
{
throw new NotImplementedException();
}
public Content Edit(Content item)
{
throw new NotImplementedException();
}
public Guid GetCheckedOutBy(Content item)
{
throw new NotImplementedException();
}
public Content GetLive(Content cnt)
{
throw new NotImplementedException();
}
public Content GetMaster(Content cnt)
{
throw new NotImplementedException();
}
public Content GetTemp(Content cnt)
{
throw new NotImplementedException();
}
public bool IsCheckedOut(Content item)
{
throw new NotImplementedException();
}
public bool IsCheckedOutBy(Content item, Guid userId)
{
throw new NotImplementedException();
}
public Content Publish(Content item)
{
throw new NotImplementedException();
}
public Content Schedule(Content item, DateTime publicationDate, DateTime? expirationDate)
{
throw new NotImplementedException();
}
public Content Unpublish(Content item)
{
throw new NotImplementedException();
}