BLL.GroupMunki.Get C# (CSharp) Method

Get() public static method

public static Get ( int groupId ) : List
groupId int
return List
        public static List<Models.GroupMunki> Get(int groupId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.GroupMunkiRepository.Get(x => x.GroupId == groupId);
            }
        }