1) Which of the following access modifier specifies that one or more declared programming elements are accessible from within the assembly that contains their declaration, not only by the component that
A) ByRef B) ByVal C) Default D) Friend
2) The __________ class provides static methods to start, stop, or filter Windows message in an application.
A) Forms B) Control C) Windows D) Application
3) Which of the following collection class of VB.NET uses a key as well as an index to access the items in a list?
A) Arraylist B) Hashtable C) Sortedlist D) stack
4) Which is not a property of the common control class?
A) Font B) Show C) Fore color D) BackColor
1) Which of the following access modifier specifies that one or more declared programming elements are accessible from within the assembly that contains their declaration, not only by the component that
A) ByRef
B) ByVal
C) Default
D) Friend
OBJECTIVE
Development of Order and Invoice Management System using ASP.NET MVC, ASP.NET Web API & Entity Framework
MODULE LIST MODULE LIST and MODULE DETAILS:
1. Users
2. Customer
3. Category
4. Product
5. Order
6. OrderDetails
7. Invoice
8. Registration &
Login
• Authorization • Authentication
REQUIREMENT
you have to use: - ASP.NET MVC, Use Entity Framework, Create Web API and host separately
->Functionality will be similar to services logic .
- Unit Testing using Microsoft Test Framework
Create Client Application in ASP.NET MVC and Services using ASP.NET Web API
Develop an Asp.Net application having web pages for:
1.1.Creating a Mail Account
a. Mail User Name should not be empty
b. Password should be at least 7 characters long. The first alphabet should be capital. Should have at least 2 digits somewhere in it.
c. Accept confirm password as well. And the Password and Confirm Password entries should match
d. Account Creation Date should be current date.
e. Accept hobbies using Checkboxes (like Reading, Drawing, Sports …) and check whether at least one checkbox is selected.
1.2.Sign In
a. Mail User Id and Password should not be empty.
b. Password should be at least 7 characters long. The first alphabet should be capital. Should have at least 2 digits somewhere in it.
c. Add a hyperlink to this page, so that if user is new he can navigate to “Create Mail Account” page.
Create the above pages based on “MailUsers” table.
1.3.Modify the SignIn Page and use HTML5 Controls
1.4.View the pages with the Page Inspector.
ABC private Ltd wants to maintain Employee’s Information. You need to define an Entity class to hold Employee Information and generate a DLL. You also need to test this class usage by writing a Console application as a client.
Task 1: Define a class called “Employee” with the following fields: EmployeeId, Employee Name, Address, City, Department, Salary Define the functions to set the values of each property and to get the value of the Salary in the class: Compile the class to generate a DLL.
Task 2: Create a Console application and use this class. Create an object of this class. Accept the values from the user and assign the members.
Task 3: Modify the console application to define an array of objects to hold 10 records of Employee. Accept the details of 10 employees from the user using a loop. Display the Employee Name and Salary of all the employees.
Task 4: Modify the class to add properties using get, set blocks. Modify the console application to use the properties.