예제 #1
0
 public ListResturentsService(ResturentContext resturentContext)
 {
     _resturentContext = resturentContext;
 }
 public ResturentsController(IListResturentsService repo, ResturentContext context)
 {
     _Repo    = repo;
     _context = context;
 }