main
|
Last change
on this file since a6e33d1 was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added files
|
-
Property mode
set to
100644
|
|
File size:
475 bytes
|
| Line | |
|---|
| 1 | using ChapterX.Domain.Entities;
|
|---|
| 2 | using ChapterX.Domain.Repositories;
|
|---|
| 3 | using ChapterX.Infrastructure.Data.DataContext;
|
|---|
| 4 | using System;
|
|---|
| 5 | using System.Collections.Generic;
|
|---|
| 6 | using System.Linq;
|
|---|
| 7 | using System.Text;
|
|---|
| 8 | using System.Threading.Tasks;
|
|---|
| 9 |
|
|---|
| 10 | namespace ChapterX.Infrastructure.Repositories
|
|---|
| 11 | {
|
|---|
| 12 | public class NotifyRepository : GenericRepository<Notify>, INotifyRepository
|
|---|
| 13 | {
|
|---|
| 14 | public NotifyRepository(ApplicationDbContext context) : base(context)
|
|---|
| 15 | {
|
|---|
| 16 | }
|
|---|
| 17 | }
|
|---|
| 18 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.