예제 #1
0
 public calendarRepository(linkContext context)
 {
     _context = context;
 }
        public uploadfilesController(IWebHostEnvironment host, linkContext context)

        {
            this.context = context;
            this.host    = host;
        }
예제 #3
0
 public DataRepository(linkContext context)
 {
     _context = context;
 }
예제 #4
0
 public notesController(linkContext context, InoteRepository <note> repo)
 {
     _context = context;
     _repo    = repo;
 }
예제 #5
0
 public noteRepository(linkContext context)
 {
     _context = context;
 }
예제 #6
0
 public calendarController(linkContext context, IDataRepository <calendarM> repo)
 {
     _context = context;
     _repo    = repo;
 }
예제 #7
0
 public linkController(linkContext ctx)
 {
     _ctx = ctx;
 }
예제 #8
0
 public BlogPostsController(linkContext context, IDataRepository <BlogPost> repo)
 {
     _context = context;
     _repo    = repo;
 }