Beispiel #1
0
 public async Task <List <MenuItemDto> > GetMenuItemsByCompanyId(int companyId)
 {
     using (UnitOfWorkProvider.Create())
     {
         return(await _menuItemService.GetByCompanyId(companyId));
     }
 }