Exemplo n.º 1
0
 public CommitteesController(IMapper mapper, IUnitOfWork unitOfWork, ICommitteesService committeesService)
     : base(mapper, unitOfWork, "Created")
 {
     _committeesService = committeesService;
 }
Exemplo n.º 2
0
 public DataController(IAppService appService, ICommitteesService committeesService)
 {
     _appService        = appService;
     _committeesService = committeesService;
 }