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