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 211593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:06:34+00:00 2026-05-11T18:06:34+00:00

Trying to avoid the SomethingManager trap here… Let’s say I’m going to write a

  • 0

Trying to avoid the SomethingManager trap here…

Let’s say I’m going to write a User editor which will allow administrators to create users in the system. Pretty basic functionality – view a list of existing users, create a new user, update an existing user, delete a user.

Let us also say that I decide to write a “business” class to handle these basic CRUD operations. This is probably what the interface would look like:

public interface ISomeUsefulName
{
    IList<User> FetchUsers();
    User FetchUser(int userId);
    bool SaveUser(User user);
    bool DeleteUser(int userId);
}

Inside the SaveUser() method, for example, I would validate the data (using a different class) and then actually save the data to the database (again using another class).

My question is, what should I name this class? Is this class doing too much and therefore I should split it into multiple classes?

  • 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-05-11T18:06:34+00:00Added an answer on May 11, 2026 at 6:06 pm

    Naming is difficult if is not respected SRP 🙂
    But members naming is often misused.

    In your case I’ll do something like this:

    • the responsibility of implementation is to cover specified contract of persistence
    • “who” is under fire

    Thinks without voice
    – persistence is done for user and a relevant name can be IUserRepository
    – methods are not more than for CRUD
    – because of the fact that the IUserRepository is for user, is not necessary to have UserSave, UserUpdate because it brakes the generic usage manner

    The Magic Is Here … just do this:

    public interface IRepository<TYPE, KEY>{
      IList<TYPE> GetAll(KEY key);
      TYPE GetById(KEY key);
      void Save(TYPE obj);
      void Update(TYPE obj);
      void Delete(Key key);
    }
    

    Is it difficult ?
    What to do with a custom one?

    public interface IUserRepository : IRepository<User, int>
    {
       IList<User> GetAllMyFavorites(ICriteria crit);
       IList<Events> GetHistoryByUser(User user);   
    }
    

    In the code using an IoC container you can do easily

    public UserController {
      private _userRepository = null;
      private _eventsRepository = null;
    
      public UserController(IUserRepository userRepository, 
      IRepository<Events,int> eventsRepository) 
      // if you are doing here just CRUD use the generic signature
      {
        _userRepository = userRepository;
        _eventsRepository = eventsRepository;
      }
    
      public MarkItAsGoldPartener(int userId){
         var user = userRepository.GetById(userId);
         user.PartnerType = PartnerTypes.Gold;
         userRepository.Save(user); // the user in member name is useless
         eventsRepository.Save(new Event(){Message = "The user" + UserId + "is golden" });
      }
    } 
    

    good luck 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 102k
  • Answers 103k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If addClass isn't working, perhaps it is barfing at the… May 11, 2026 at 8:20 pm
  • Editorial Team
    Editorial Team added an answer By default, and when no target are set into the… May 11, 2026 at 8:20 pm
  • Editorial Team
    Editorial Team added an answer Here is explained how. May 11, 2026 at 8:20 pm

Related Questions

My team is currently trying to automate the deployment of our .Net and PHP
I'm trying to make a div fade out with jquery after the form validates
I'm trying to write an iterator for results from a PDO statement but I
I am trying to write a generic Parse method that converts and returns a
Where is the Web.config supposed to go in an ASP.NET MVC project? I just

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.