Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8910261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:38:41+00:00 2026-06-15T03:38:41+00:00

I have multiple controllers that have some common actions. I have made generic controllers:

  • 0

I have multiple controllers that have some common actions. I have made generic controllers:

 public class FirstBaseController<TEntity> where TEntity : class, IFirst, new()
 public class SecondBaseController<TEntity> where TEntity : class, ISecond, new()

Then i want to do something like this:

 public class MyController : FirstBaseController<First>, SecondBaseController<Second>

And I know that multiple class inheritance is not allowed in C#. Can you tell me alternative way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:38:42+00:00Added an answer on June 15, 2026 at 3:38 am

    The only option is to replace the base classes by interfaces and achieve reuse through composition:

    public interface IMyFirstSetOfMethods<TEntity> { /*... */ }
    public interface IMySecondSetOfMethods<TEntity> { /*... */}
    
    public class FirstImpl 
    {
    
    }
    
    public class SecondImpl
    {
    }
    
    
    public class MyController : IMyFirstSetOfMethods<First> , IMySecondSetOfMethods<Second>
    {
        FirstImpl myFirstImpl = new FirstImpl();
        SecondImpl mySecondImpl = new SecondImpl();
    
        // ... implement the methods from the interfaces by simply forwarding to the Impl classes
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some common code that runs at the beginning of multiple controller actions.
I have multiple classes (controllers) that share a huge chunk of code with each
I'm starting an app where I'd like to have multiple view controllers. Some of
In one of my Controllers, I have multiple URLs that will ultimately render in
In an iOS 6 app I have some view controllers that are added as
I have multiple input text fields grouped in divs: <div class=container0> <input class=containerItem0 name=containerItem[0][0]
I have a scenario that i suspect is very common, i've found various ideas
I have a UITabbar with multiple view controllers. One of them is a UITableView.
I have a multiple Nib application, and in my awakeFromNib: method, some IBOutlet s
I have an application with multiple controllers, and I'd like to have each log

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.