Example #1
0
 public GPService(IGPRepository gpRepository, IUnitOfWork unitOfWork)
 {
     this._gpRepository = gpRepository;
     _unitOfWork = unitOfWork;
 }
Example #2
0
 public GPController(AppDbContext dbContext)
 {
     _doctors = new GPRepository(dbContext);
 }