Beispiel #1
0
        public virtual async Task <DocumentWithDetailsDto> GetDefaultAsync(GetDefaultDocumentInput input)
        {
            var project = await _projectRepository.GetAsync(input.ProjectId);

            return(await GetDocumentWithDetailsDtoAsync(
                       project,
                       project.DefaultDocumentName + "." + project.Format,
                       input.LanguageCode,
                       input.Version
                       ));
        }
 public virtual Task <DocumentWithDetailsDto> GetDefaultAsync(GetDefaultDocumentInput input)
 {
     return(DocumentAppService.GetDefaultAsync(input));
 }