Single entity with single view or two views in mvc3 vs2010?

Posted by user2905798 on Stack Overflow See other posts from Stack Overflow or by user2905798
Published on 2013-10-22T06:50:04Z Indexed on 2013/10/23 9:55 UTC
Read the original article Hit count: 100

I have the following entity model

public class Employee
{
    public int Employee ID{get;set;}

    public string employeename{get;set;}

    public datetime employeeDOb{get;set;}

    public datetime? employeeDateOfJoin{get;set;}

    public string empFamilyname{get;set;}

    public datetime empFamilyDob{get;set;}    
}

here I have to design a view for collecting employee information and employee family information.

Since I am working on already available data, where in empFamilyDob was not mandatory. But now it is being made mandatory, the previous data doesn't contain EmpFamilyDob. So naturally I have added this new property EmpFamilyDob to the Model and made it required through DataAnnotations.

Now there are two set of views to be developed. 1. A view which simply allows to collect the employee information without employee family information. i.e, empFamilyName and EmpFamilyDob.--This view is used by the Hr section to insert empplyee details

  1. Since the empFamilyname and EmpFamilyDob being now made mandatory, some other section will edit the data and update the EmpFamilyName and EmpFamilyDob as and when the information about employee family details are received.

I have action controller for CreateNew and Edit Which is being generated by using the default model. There are two user actions being performed.

1.When the user clicks the Create new -- he will be able to update only the Employee information

2.As and when the other section receives the employee family details they update the familyname and family date of birth. i.e, EmployeeFamilyname and EmployeFamilyDob.

While creating new record the uses should be able to update employee information only and while editing the information he should be able to update the employeefamily information. Since I have a single view with most of these fields as required and not allowing null , How can I achieve this in a sincle view?

I have recorrected the model like this

public class Employee {

public int Employee ID{get;set;}

public string employeename{get;set;}

public datetime employeeDOb{get;set;}

public datetime? employeeDateOfJoin{get;set;}

public string empFamilyname{get;set;}

public datetime? empFamilyDob{get;set;}    

}

Now by default I hope the createnew action would insert null value for empFamilyname(string datatype) and empFamilyDob . In the Edit action the user should be made to enter empFamilyname and empFamilyDob(mandatory). As there is every chance that the user might edit other information about the employee(like employeeDob) I don't want to go for partial views. Can you help me out with some illustration. Thanks in advance

© Stack Overflow or respective owner

Related posts about c#

Related posts about visual-studio-2010