A set of useful C# reusable classes and components that could be used with any Net Core Web application IT ALLOW TO REDUCE AMOUNT OF CODE when IMPLEMENTING REST API (see examples in README)
According to #2 :
Base Controller: I personally think that passing the Manager object into the base controller via a constructor is easier to understand.
i.e., public GroupController(GroupManager manager) : base(manager) { }
According to #2 : Base Controller: I personally think that passing the Manager object into the base controller via a constructor is easier to understand. i.e., public GroupController(GroupManager manager) : base(manager) { }