public virtual async Task <RouteGroupDto> GetAsync(RouteGroupGetByAppIdInputDto routerGetByAppId) { using (DataFilter.Disable <IActivation>()) { var router = await RouterRepository.GetByAppIdAsync(routerGetByAppId.AppId); return(ObjectMapper.Map <RouteGroup, RouteGroupDto>(router)); } }
public virtual async Task DeleteAsync(RouteGroupGetByAppIdInputDto routerGetByAppId) { var router = await RouterRepository.GetByAppIdAsync(routerGetByAppId.AppId); await RouterRepository.DeleteAsync(router); }
public virtual async Task DeleteAsync(RouteGroupGetByAppIdInputDto input) { await RouterAppService.DeleteAsync(input); }
public virtual async Task <RouteGroupDto> GetAsync(RouteGroupGetByAppIdInputDto input) { return(await RouterAppService.GetAsync(input)); }