public async Task <IServiceResponse <ManifestDetailDTO> > GetManifestManagemtById(Guid id) { return(await HandleApiOperationAsync(async() => { var manifestManagement = await _service.GetManifestById(id); return new ServiceResponse <ManifestDetailDTO> { Object = manifestManagement }; })); }
public Manifest GetManifestById(string ID) { return(_manifestService.GetManifestById(ID)); }