Beispiel #1
0
 public virtual async Task RemoveAllFileAsync(VersionGetByIdDto versionGetById)
 {
     await _versionAppService.RemoveAllFileAsync(versionGetById);
 }
Beispiel #2
0
 public virtual async Task RemoveAllFileAsync(VersionGetByIdDto versionGetById)
 {
     await _versionManager.RemoveAllFileAsync(versionGetById.Id);
 }
Beispiel #3
0
 public virtual async Task <VersionDto> GetAsync(VersionGetByIdDto versionGetById)
 {
     return(await _versionAppService.GetAsync(versionGetById));
 }
Beispiel #4
0
        public virtual async Task <VersionDto> GetAsync(VersionGetByIdDto versionGetById)
        {
            var version = await _versionManager.GetByIdAsync(versionGetById.Id);

            return(ObjectMapper.Map <AppVersion, VersionDto>(version));
        }