示例#1
0
 public static CreateDocumentTypeDto ToCreateDocumentType(this DocumentTypeStateDtoWrapper state)
 {
     return(state.ToCreateDocumentType <CreateDocumentTypeDto>());
 }
示例#2
0
 public static DeleteDocumentTypeDto ToDeleteDocumentType(this DocumentTypeStateDtoWrapper state)
 {
     return(state.ToDeleteDocumentType <DeleteDocumentTypeDto>());
 }
示例#3
0
 public static MergePatchDocumentTypeDto ToMergePatchDocumentType(this DocumentTypeStateDtoWrapper state)
 {
     return(state.ToMergePatchDocumentType <MergePatchDocumentTypeDto>());
 }
示例#4
0
 public static IDocumentTypeCommand ToCreateOrMergePatchDocumentType(this DocumentTypeStateDtoWrapper state)
 {
     return(state.ToCreateOrMergePatchDocumentType <CreateDocumentTypeDto, MergePatchDocumentTypeDto>());
 }