예제 #1
0
        public List <AbonentInLibraryDTO> AbonentListSpoiled(int libId)
        {
            StoredProcedure procedure = new StoredProcedure(_context);

            return(procedure.AbonentsSpoiled().Where(c => c.LibraryId == libId).Select(c => (AbonentInLibraryDTO)c).ToList());
        }