Skip to main content

Project available: MAVSM

Following project is ready available for academic purpose and business requirements:


 Music and Video Store Management (MAVSM):

Objectives:


  • The objective of “Music and Video Store Management” is to provide such a system that can make the data management process automated for a Music and video store/production house.
  • The system will help the users for the following operations:-

Ø  To receive customers’ (regular and visiting) orders.
Ø  To keep track of the orders processing detail/status passed at the media creation and processing center.
Ø  To generate customers invoice.
Ø  To maintain records of the movies and music (old and new) with the data like video and audio quality, bit rate, resolution, format etc.
Ø To maintain the detail of the company that produces or own the movie or music copyrights.
Ø  To record sales information as well as royalty calculation given to the company who owns copyrights of the produced movies and music.
Ø  To keep track of the stock availability of the items like blank CDs, DVDs, printing paper etc. required from order processing to order completion at media creation and processing center.
Ø  The system will keep complete detail of the regular customers.
Ø  The system will also be able to answer the queries like list of movies and songs available for sale in different sorting order as per customer choice, status of the inventory items stocked at the media creation and processing center, royalty that needs to be paid to the owner company, total sale of the month etc.



Technologies used:

Following technologies are used to develop this project:

  • C#.NET for front end management.
  • SQL Server for database management.
  • Crystal Report for reporting purpose.

Screens for demo:



















For any query feel free to contact us.

That's it....

Comments

Popular posts from this blog

datatable compute sum in c# | datatable compute() function

datatable compute sum in c# | datatable compute() function Hi Readers, Today I am going to explain you the use of compute() function of Data table using C#.NET .  Let's begin.. datatable column sum in c# datatable compute sum in c# | datatable compute() function Let's say that we have the following rows filled in the Data table with the columns ID,NAME,AGE and SALARY as shown in snapshot below:- employees detail in datatable In order to calculate the figures like total of salary, average of salary, maximum salary and minimum salary, we can use the compute() function of the Data table. The compute() function loops through each value of the column's cell and then perform the calculation. For the above data table's salary column, lets find the total, average, maximum and minimum of salary one by one using compute() function:- datatable compute sum in c# | datatable compute() function Calculate the total of sala...

Adding rows to Datatable using C#.NET

Adding rows to Datatable using C#.NET Hi Readers, Today I am going to explain you 2 ways that we can use to add rows to a Data table using C#.NET.  So lets begin: Add row in datatable in c# Adding rows to Datatable using C#.NET > Lets say, we have a data table with the columns ID, NAME, AGE AND SALARY and I want to add rows to this data table using C# coding . > First of all, add columns to data table using the following lines of code: DataTable dtEmployee = new DataTable("Employee"); dtEmployee.Columns.Add("ID", typeof(int)); dtEmployee.Columns.Add("NAME", typeof(String)); dtEmployee.Columns.Add("AGE", typeof(int)); dtEmployee.Columns.Add("SALARY", typeof(Decimal)); Add row in datatable in c# > Now if we want to add rows to the above data table at run time, we have the following 2 ways to do so: Adding rows to Datatable using C#.NET 1. Using DataRows :- In this, we create an o...

C# Dictionary

> In this post, we will see how to use a dictionary in C#. > A dictionary in C# is used to store collection of values with key values as pair. > So whenever user wants to get the value then he will have to pass the key value to the dictionary and it will return the value to the user. > The namespace of the C# dictionary is System.Collections.Generic. > Let’s take a simple example of storing digits from 0 to 9 as key value and these digits in the word form as the collection values. > Here, the user will type a digit from 0 to 9 and on clicking the button, it gives the digit in the word form. > To keep this example simple, here the dictionary will be having digits from 0 to 9 only and if user enters a value less than 0 or greater than 9 then he will get the appropriate message. > Following is the code for demonstrating the use of the Dictionary : HTML Code: <body>    <form id="form1" runat="server">   ...