예제 #1
0
 public async Task UpdateAsync(CarInsuranceClaimDto model)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public async Task AddAsync(CarInsuranceClaimDto model)
 {
     var item = Mapper.Map <CarInsuranceClaim>(model);
     await _carInsuranceRepository.Add(item);
 }