Beispiel #1
0
        public async Task <List <Invite> > GetAllInvitesForDepartmentAsync(int departmentId)
        {
            var invites = await _invitesRepository.GetAllByDepartmentIdAsync(departmentId);

            return(invites.ToList());
        }