コード例 #1
0
ファイル: BoardsService.cs プロジェクト: KarolN/Board
 public BoardsService(IMapper mapper, IBoardsRepository boardsRepository,
                      IAuthInfrastructure authInfrastructure)
 {
     _mapper             = mapper;
     _boardsRepository   = boardsRepository;
     _authInfrastructure = authInfrastructure;
 }
コード例 #2
0
ファイル: ListsService.cs プロジェクト: KarolN/Board
 public ListsService(IListsRepository listsRepository,
                     IBoardsRepository boardsRepository,
                     IAuthInfrastructure authInfrastructure)
 {
     _listsRepository    = listsRepository;
     _boardsRepository   = boardsRepository;
     _authInfrastructure = authInfrastructure;
 }
コード例 #3
0
ファイル: EventService.cs プロジェクト: gdanielch9/MyNotes
 public EventService(IEventsRepository eventsRepository, IMappingInfrastructure mappingInfrastructure, IAuthInfrastructure authInfrastructure)
 {
     _eventsRepository      = eventsRepository;
     _mappingInfrastructure = mappingInfrastructure;
     _authInfrastructure    = authInfrastructure;
 }
コード例 #4
0
 public AuthService(IAuthInfrastructure authInfrastructure)
 {
     this.authInfrastructure = authInfrastructure;
 }