mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.TestApp.Domain;
|
|
using Volo.Abp.Domain.Repositories;
|
|
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.TestApp.Application.Dto;
|
|
|
|
namespace Volo.Abp.TestApp.Application
|
|
{
|
|
public class PeopleAppService : AsyncCrudAppService<Person, PersonDto>, IPeopleAppService
|
|
{
|
|
public PeopleAppService(IQueryableRepository<Person> repository)
|
|
: base(repository)
|
|
{
|
|
|
|
}
|
|
|
|
public async Task<ListResultDto<PhoneDto>> GetPhones(Guid id, GetPersonPhonesFilter filter)
|
|
{
|
|
var phones = (await GetEntityByIdAsync(id)).Phones
|
|
.WhereIf(filter.Type.HasValue, p => p.Type == filter.Type)
|
|
.ToList();
|
|
|
|
return new ListResultDto<PhoneDto>(
|
|
ObjectMapper.Map<List<Phone>, List<PhoneDto>>(phones)
|
|
);
|
|
}
|
|
|
|
public async Task<PhoneDto> AddPhone(Guid id, PhoneDto phoneDto)
|
|
{
|
|
var person = await GetEntityByIdAsync(id);
|
|
var phone = new Phone(person.Id, phoneDto.Number, phoneDto.Type);
|
|
|
|
person.Phones.Add(phone);
|
|
|
|
return ObjectMapper.Map<Phone, PhoneDto>(phone);
|
|
}
|
|
|
|
public async Task RemovePhone(Guid id, long phoneId)
|
|
{
|
|
var person = await GetEntityByIdAsync(id);
|
|
person.Phones.RemoveAll(p => p.Id == phoneId);
|
|
}
|
|
|
|
public Task<GetWithComplexTypeInput> GetWithComplexType(GetWithComplexTypeInput input)
|
|
{
|
|
return Task.FromResult(input);
|
|
}
|
|
}
|
|
}
|