Example #1
0
 public GroupController(IGroupRepo groups)
 {
     _groups = groups;
 }
 public GroupsController(IGroupRepo repo)
 {
     _repo = repo;
 }
 public GroupService(IGroupRepo groupRepository)
 {
     _groupepository = groupRepository;
     _client         = new HttpClient();
 }
Example #4
0
 public HomeController(ILogger <HomeController> logger, IGroupRepo repository, GroupListContext context)
 {
     _logger     = logger;
     _repository = repository;
     _context    = context;
 }
Example #5
0
 public UserService(IUserRepo userRepository, IGroupRepo groupRepo = null)
 {
     _userRepository = userRepository;
     _groupRepo      = groupRepo;
 }