Exemplo n.º 1
0
 private async Task GetListItems()
 {
     IdentificationTypeList = new SelectList(await _identificationTypeService.GetAll(), nameof(CommonModel.Id), nameof(CommonModel.Description));
     ClientTypeList         = new SelectList(await _clientTypeService.GetAll(), nameof(CommonModel.Id), nameof(CommonModel.Description));
 }