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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:32:34+00:00 2026-05-24T04:32:34+00:00

I am creating a web application that manages documents. These documents have stages. Users

  • 0

I am creating a web application that manages documents. These documents have stages. Users will be able to reject these documents from the current stage back to the previous stage.

So the flow will be like this Document stage one approved > Get next stage and set document stage to next stage > Document stage one REJECTED > Get previous stage and set document stage to previous stage.

Now what I need help with is how to manage the stages back and forth and what is the best way to setup my entities?

Example Entities

public class Document
{
    public virtual int Id { get; set; }
    public virtual string Name { get; set; }
    public virtual Stage Stage { get; set; }
}

public class Stage
{
    public virtual int Id { get; set; }
    public virtual string Name { get; set; }
}
  • 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-24T04:32:35+00:00Added an answer on May 24, 2026 at 4:32 am

    Use an enum

    Replace your class Stage with an Enum

    public enum Stage
    {
       Rejected, None, Approved, Etc 
    }
    

    In your NHibernate mapping simplay add the Stage enum to your map

    <property name="Stage"></property>

    In your db you can simply create the Stage column to an int32 and Nhibernate will figure out how to persist and load the enum automagically.

    The advantage of using an enum is that you can always cast the enum to an int and decrement or increment to get the previous or next stage (assuming that you are simply adding them in 0..N).

    Stage nextStage = (Stage)(((int)currentDocument.Stage)++);
    Stage previousStage = (Stage)(((int)currentDocument.Stage)--);
    

    Otherwise you can use a linq query to get the previous or next steps.

    Edit

    So far in your requirements you haven’t listed that you need anything of the complexity of a generic workflow. Here is a sample app which uses WWF with a document approval system similiar to what you require.

    • http://www.codeproject.com/KB/WF/wwf_basics_files.aspx

    Until you actually need something of the WWF complexity. I would recommend that you use the enum and then refactor when your requirements change. This way you’re not implementing a feature “just in case”.

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

Sidebar

Related Questions

I have an asp.net web application (c#) in visual studio 2010 that is heavily
I am creating a web application that is trying to use public Facebook content.
I have develope a small web application in that i am using wcf service,I
I have a new web app that is packaged as a WAR as part
I'm creating web application for my friend, a tutor school system. Now, I'm having
High Level Goal: Create a single Maven Web Application project that can be used
I'm creating an IPad application using C#, Mono develop and Monotouch. I've been using
I am creating directories, and writing files to a shared folder within my web
Let say I have the following desire, to simplify the IConvertible's to allow me
The service layer of my ASP.NET MVC 3 application uses AutoMapper to map view

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.