コード例 #1
0
 public async Task AddCastAsync(NewCastDto dto)
 {
     var newCast = dto.DtoToEntity();
     await _castRepository.AddAsync(newCast);
 }