Show / Hide Table of Contents

Class DiaryDataDTO

Represents diary data.

Inheritance
object
DiaryDataDTO
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Integration.DataContracts
Syntax
[DataContract]
public class DiaryDataDTO

Properties

BusinessCodes

Business codes are defined per Case type

Declaration
[DataMember]
public IList<BusinessCodeDTO> BusinessCodes { get; set; }
Property Value
Type Description
IList<BusinessCodeDTO>

The business codes.

CaseTypes

Case types are defined per diary

Declaration
[DataMember]
public IList<CaseTypeDTO> CaseTypes { get; set; }
Property Value
Type Description
IList<CaseTypeDTO>

The case types.

DeedTypes

Deed types are defined per case type

Declaration
[DataMember]
public IList<DeedTypeDTO> DeedTypes { get; set; }
Property Value
Type Description
IList<DeedTypeDTO>

The deed types.

DiaryID

The diary identifier.

Declaration
[DataMember]
public int DiaryID { get; set; }
Property Value
Type Description
int

The diary identifier.

DocumentTypes

Document types are defined per Case type

Declaration
[DataMember]
public IList<WorkingDocumentTypeDTO> DocumentTypes { get; set; }
Property Value
Type Description
IList<WorkingDocumentTypeDTO>

The document types.

PostLists

Post lists are defined per diary There is an associated access control list. Should be factored out

Declaration
[DataMember]
public IList<PostListsDTO> PostLists { get; set; }
Property Value
Type Description
IList<PostListsDTO>

The postlists.

Title

The title of the object.

Declaration
[DataMember]
public string Title { get; set; }
Property Value
Type Description
string

The title of the object.

Back to top Created by Formpipe