ABSTRACT:

The proposed web based coupon management system aimed at allowing the businesses to market their services and attract new customers by providing attractive discounts to avail the services with. The discounts would be purchased as coupons through the website which can then be redeemed by the customer at the merchant location. Earlier the businesses had to rely on their own effort to market their services and on print/social media to distribute the coupons. The coupons were being distributed for free, did not generate any revenue on their own and as such the merchants could not provide attractive deals which would generate interest of the public. The customers too are on the lookout for coupons which provided deep discounts on the services they wish to avail. They will not mind paying a small fee for the collecting these coupons.


EXISTING SYSTEM :

Integrate with/use an already existing solution ... Anyone using such a system, if yes, what are you using and what's your ... a quicker way to build coupon generation,

PROPOSED SYSTEM

The proposed web based coupon management system aimed at allowing the businesses to market their services and attract new customers by providing attractive discounts to avail the services with. ... The coupons can be distributed to be used in multiple merchant locations or not as per business policies.

ARCHITECTURE:




SCREENSHOT:











SAMPLE CODE:

Loginpage.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Coupon_Management
{
    public partial class LoginPage : Form
    {
        public LoginPage()
        {
            InitializeComponent();
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Coupon_Details r = new Coupon_Details();
            r.Show();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select * from dbo.loginTable where username='" + txt_UserName.Text + "' and  password='" + txt_Password.Text + "'", con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            if (ds.Tables[0].Rows.Count > 0)
            {
                AdminSectionPage st = new AdminSectionPage();
                st.Show();
                this.Hide();
               
            }
            else
            {
                MessageBox.Show("please enter correct username and password");
            }
            con.Close();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
         

        }

        

        private void button3_Click(object sender, EventArgs e)
        {
            txt_UserName.Text = " ";
            txt_Password.Text = " ";

        }
    }
}

AdminSectionPage.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Scp_Coupon_Management
{
    public partial class AdminSectionPage : Form
    {
        public AdminSectionPage()
        {
            InitializeComponent();
        }

        private void btn_Submit_Click(object sender, EventArgs e)
        {
            Coupon_Details st = new Coupon_Details();
            st.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            CouponvsSubjectAllocation Coupon = new CouponvsSubjectAllocation();
            Coupon.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            CouponvsCoupon stt = new CouponvsCoupon();
            stt.Show();
            this.Hide();

        }

        private void button3_Click(object sender, EventArgs e)
        {
            finalReallocation final = new finalReallocation();
            final.Show();
            this.Hide();
        }
    }
}

finalReallocation.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using acep_avas_kas_Evaluator;

namespace Scp_Coupon_Management
{
    public partial class finalReallocation : Form
    {
        public finalReallocation()
        {
            InitializeComponent();
        }

        acep_avas_kas_102234 acep = new acep_avas_kas_102234();

        private void finalReallocation_Load(object sender, EventArgs e)
        {
          


            combo.Items.Clear();
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select Coupon_Name from Coupon_Details", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                combo.Items.Add(dr[0].ToString());
            }
            combo.SelectedIndex = 0; con1.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            comboBox2.Items.Clear();
            
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select Class_Period  from  dbo.CouponvsTimeTable where Name = '" + combo .SelectedItem.ToString() + "' and DayOrder='" + txt_Day.Text + "' and Degree='BCA' AND Student_Year='"+ comboBox3.SelectedItem.ToString() +   "'", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                comboBox2.Items.Add(dr[0].ToString());
            }

           
            // cmb_CouponID.SelectedIndex = 0; 
            ///////////////////////////////

            con1.Close();
            ///////////////////////////////////


            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("abc", con);
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter param1 = new SqlParameter("@studentyear", SqlDbType.VarChar);
            cmd.Parameters.Add(param1);
            param1.Value = comboBox3.SelectedItem.ToString();

            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            if (ds.Tables[0].Rows.Count > 0)
            {
                dataGridView1.DataSource = ds.Tables[0];
            }
            else
            {
                MessageBox.Show("No Data to show");
            }
            con.Close();





        }

        private void combo_SelectedIndexChanged(object sender, EventArgs e)
        {
            cmb_CouponID.Items.Clear();

            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select CouponID from dbo.CouponTable where Couponname='" + combo .SelectedItem.ToString() + "'", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                cmb_CouponID.Items.Add(dr[0].ToString());
            }
           // cmb_CouponID.SelectedIndex = 0; 
            
            con1.Close();



        }

        private void cmb_CouponID_SelectedIndexChanged(object sender, EventArgs e)
        {
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("SELECT dateval1, [day]  FROM [Scp_Coupon_Management].[dbo].[CouponTable] where CouponID='" + cmb_CouponID.SelectedItem.ToString() + "'", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            
            txt_Date.Text = ds1.Tables[0].Rows[0][0].ToString();
            txt_Day.Text = ds1.Tables[0].Rows[0][1].ToString();
            /////////////////////////////////////
            comboBox3.Items.Clear();
            SqlCommand cmd11 = new SqlCommand("select distinct Student_Year from dbo.CouponvsTimeTable   where Name = '" + combo.SelectedItem.ToString() + "' and DayOrder='" + txt_Day.Text + "' and Degree='BCA' ", con1);
            SqlDataAdapter sda11 = new SqlDataAdapter(cmd11);
            DataSet ds11 = new DataSet();
            sda11.Fill(ds11);
            foreach (DataRow dr in ds11.Tables[0].Rows)
            {

                comboBox3.Items.Add(dr[0].ToString());
            }

            con1.Close();
        }

        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {
            comboBox1.Items.Clear();
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select distinct name   from [Scp_Coupon_Management].[dbo].[CouponvsTimeTable] where name not in  ( SELECT name       FROM [Scp_Coupon_Management].[dbo].[CouponvsTimeTable]  where DayOrder='" + txt_Day .Text  + "'  and  Class_Period = '" + comboBox2.SelectedItem.ToString() + "')", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                comboBox1.Items.Add(dr[0].ToString());
            }
            // cmb_CouponID.SelectedIndex = 0; 

            con1.Close();

        }

        private void button2_Click(object sender, EventArgs e)
        {

             
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("drop table temp_student; select * into temp_student from (select T.* from   ( SELECT DayOrder,I =  (SELECT Name FROM dbo.CouponvsTimeTable WHERE class_period = 'I' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),II =  (SELECT Name FROM dbo.CouponvsTimeTable WHERE class_period = 'II' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),III =  (SELECT Name FROM dbo.CouponvsTimeTable WHERE class_period = 'III' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),IV =  (SELECT Name FROM dbo.CouponvsTimeTable WHERE class_period = 'IV' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),V =  (SELECT Name FROM dbo.CouponvsTimeTable WHERE class_period = 'V' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and  Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder) FROM dbo.CouponvsTimeTable m GROUP BY DayOrder )t inner join [days] d on t.DayOrder = d.[days]   )t ; update [Scp_Coupon_Management].[dbo].[temp_student]   set " + comboBox2.SelectedItem.ToString() + "='" + comboBox1.SelectedItem.ToString() + "' where DayOrder='" + txt_Day.Text + "' ; select t.* from temp_student t inner join [days] d on t.DayOrder = d.[days] order by d.id;", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            dataGridView2.DataSource = ds1.Tables[0];
            // cmb_CouponID.SelectedIndex = 0; 

            con1.Close();

           

        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
        
        }
    }
}


Register.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Coupon_Management
{
    public partial class Register : Form
    {
        public Register()
        {
            InitializeComponent();
        }

        private void Register_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");


        }
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            LoginPage f = new LoginPage();
            f.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
           

        } 
        
     
        private void btn_Submit_Click(object sender, EventArgs e)
        {
            SqlConnection conn = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            conn.Open();

            string myQuery = "insert into loginTable values('" + txt_Name.Text + "' , '" + txt_UserName.Text + "' , '" + txt_Password.Text + "' , '" + txt_Mobile.Text + "' , '" + cmb_secQuestion.SelectedItem.ToString() + "' , '" + txt_SecAnswer.Text + "')";
            SqlCommand cmd = new SqlCommand(myQuery, conn);
            cmd.CommandType = CommandType.Text;
            int i = cmd.ExecuteNonQuery();
            conn.Close();

            if (i > 0)
            {
                MessageBox.Show("User Added Successfully");

            }
            else

                MessageBox.Show("Issue in amending the user data");

        }

        private void btn_Cancel_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();

        }

        private void label12_Click(object sender, EventArgs e)
        {

        }
    }
}
 

Coupon_Details.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Coupon_Management
{
    public partial class Coupon_Details : Form
    {
        public Coupon_Details()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
          
            SqlCommand cmd = new SqlCommand("insert into Coupon_Details values('" + txt_CouponName.Text + "','" + dateTimePicker1.Value + "','" + txt_Email.Text + "','" + txt_SubjectSpecilist.Text + "','" + txt_Password.Text + "','" + txt_Address.Text + "','" + txt_ContactNo.Text + "','" + txt_AlternativeNo.Text + "','" + txt_BloodGroup.Text + "')", con);
            int x = cmd.ExecuteNonQuery();
            if (x > 0)
            {
                MessageBox.Show("Coupon Details added successsfully");
            }
            else
            {
                MessageBox.Show(" Issue in adding Coupon Details");


            }
            con.Close();
        }

        private void Coupon_Details_Load(object sender, EventArgs e)
        {

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            CouponvsSubjectAllocation s = new CouponvsSubjectAllocation();
            s.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();
        }
    }
}



CouponvsCoupon.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Coupon_Management
{
    public partial class CouponvsCoupon : Form
    {
        public CouponvsCoupon()
        {
            InitializeComponent();
           
        }

        private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
        {
            String datepic = dp_Date.Text;
            
        }

        private void CouponvsCoupon_Load(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select id from Coupon_Details", con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_ID.Items.Add(dr[0].ToString());
            }
            con.Close();
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
 
               DateTime dt = dp_Date.Value;
               DayOfWeek dow = dt.DayOfWeek;  
               string str = dow.ToString();
               Random ran = new Random();
               int val = ran.Next(1, 5000);

               txt_Day.Text = str.ToUpper();
               // MessageBox.Show(str);
               SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
               con.Open();

               SqlCommand cmd = new SqlCommand("insert into dbo.CouponTable values('" + cmb_ID.SelectedItem.ToString() + "','" + cmb_Name.SelectedItem.ToString() + "','" + dp_Date.Value.ToString() + "','" + txt_Day.Text + "','" + txt_ReasonCoupon.Text + "'," + val.ToString() + ")", con);
               int x = cmd.ExecuteNonQuery();
               if (x > 0)
               {
                   MessageBox.Show("Coupon Details added successsfully");
               }
               else
               {
                   MessageBox.Show(" Issue in adding Coupon Details");


               }
               con.Close();
        }

        private void cmb_ID_SelectedIndexChanged(object sender, EventArgs e)
        {

            cmb_Name.Items.Clear();
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select Coupon_Name from Coupon_Details where id=" + cmb_ID.SelectedItem.ToString(), con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_Name.Items.Add(dr[0].ToString());
            }
            cmb_Name.SelectedIndex = 0;
            con.Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();

        }

        private void label6_Click(object sender, EventArgs e)
        {

        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void label5_Click(object sender, EventArgs e)
        {

        }
    }
}


CouponvsSubjectAllocation.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Coupon_Management
{
    public partial class CouponvsSubjectAllocation : Form
    {
        public CouponvsSubjectAllocation()
        {
            InitializeComponent();
          
        }

        private void label7_Click(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("insert into [CouponvsTimeTable] values('" + cmb_ID.Text + "','" + cmb_Name.Text + "','" + cmb_Degree.Text + "','" + cmb_Stu_Year.Text + "','" + cmb_Class_Periods.Text + "','" + cmb_SUbjects.Text + "','" + cmb_DayOrder.Text + "')", con);
           int x = cmd.ExecuteNonQuery();
           if (x > 0)
            {
                MessageBox.Show("Record Added");
            }
            else
            {
                MessageBox.Show("Record not Added");


            } con.Close();
       }

        private void cmb_Name_SelectedIndexChanged(object sender, EventArgs e)
        {
            
        }

        private void cmb_ID_SelectedIndexChanged(object sender, EventArgs e)
        {
            
            
            cmb_Name.Items.Clear();
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select Coupon_Name from Coupon_Details where id=" + cmb_ID.SelectedItem.ToString(), con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_Name.Items.Add(dr[0].ToString());
            }
            cmb_Name.SelectedIndex = 0; con.Close();
        }

        private void CouponvsAttendance_Load(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select id from Coupon_Details", con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_ID.Items.Add(dr[0].ToString());
            } con.Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Coupon_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("abc", con);
            cmd.CommandType = CommandType.StoredProcedure;


            SqlParameter param1 = new SqlParameter("@studentyear", SqlDbType.VarChar);
            cmd.Parameters.Add(param1);
            param1.Value = cmb_Stu_Year.SelectedItem.ToString();



            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            if (ds.Tables[0].Rows.Count > 0)
            {
                dataGridView1.DataSource = ds.Tables[0];
            }
            else
            {
                MessageBox.Show("No Data to show");
            }
            con.Close();
        }
    }
}


MODULES SPECIFICATION:

A module is a part of a program. Programs are composed of one or more independently developed modules that are not combined until the program is linked. A single module can contain one or several routines. The project contains the following main modules.

ADMIN MODULE:

This module lists out the details of the admin. The entire website is handled by the admin only and the admin has a separate username and password to access the website. Only admin has the control to view all the reports generated in the website.



ADD COMPANY DETAILS MODULE:

Here, we specify the details of the company whose coupon we have to generate. The details include: company name, type, coupon amount, coupon location, company location, time since when company is existing etc.
• Name: Name of the company
• Type: Type of the company
• Coupon amount: Amount of coupon to be generated
• Company location: Where the company is located
• Time: Time since when company was created



NEW USER CREATION MODULE:

Here, we specify the details of the user who will be using the coupon of the company. The user gives his details after he specifies the company’s name whose coupon he or she wants to generate. The details include username, password, email id of the user, date of birth, location etc.
• Name: Name of the person
• Email id: Email id of the user
• Password: It is a user's choice.
• DOB: It must be in dd/mm/yyyy format.
• Location: Where the user is present
• Mobile no: Contact no. of the user



USER LOGIN MODULE:

This module allows the user to access the website. It requires username and password through which the user can open the website and generate the coupon by clicking on the button accordingly.
• Username: Name of the user name
• Password: It is a user's choice.



COUPON GENERATION MODULE:

This module specifies the coupon details offered by the company generated by the user. If the user login is successful, the coupon code is generated and the other coupon details can be seen. The coupon details include coupon name, coupon code, type of coupon, amount etc.
• Coupon name: Name of the coupon
• Coupon code: Unique id code of coupon
• Coupon type: Type of the coupon
• Amount: Amount generated



VIEW COUPON MODULE:

This last module is used to display or view the coupon to the user after he or she logins to the website by giving the specified details. This is handled by the admin himself.

ISO CERTIFIED - MINI PROJECTS FOR ENGINEERING STUDENTS:

KaaShiv Offers, Mini project for engineering students. mini project for engineering students includes Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development, Web designing and Networking . This internship includes the topics related to mini projects for engineering students 2nd year, mini projects for engineering students 3rd year with circuit diagram.This company runs by,

    • 10 Years Awarded Microsoft Most Valuable Professional
    • Google Recognized Experts
    • Cisco Recognized Certified Experts
    • Microsoft Awarded Certified Experts
    • Robotics Experts
    • HCL Technologies Awarded Expert

Trainers at KaaShiv InfoTech are real-time Software / IT professionals worked in leading MNCs like,
    • CTS,
    • Wipro,
    • TCS,
    • Infosys,
    • Accenture and
    • Mindtree.

The Course curriculum for mini projects for engineering students is carefully researched and prepared by professionals from MNC to meet the demands expected in the IT industry. After completing the mini project Training in Chennai at KaaShiv Infotech, students will be familiar with the Software development process followed in IT industry. Below are some of the insights of our mini projects program for engineering students.

    • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
    • mini projects for engineering students involves Full practical training
    • Hardware and software tools full support
    • Technology training
    • Placement training
    • Full documentation and report analysis
    • R & D projects
    • Industrial exposure
    • Endorsing Corporate skills

WHAT IS MINI PROJECT ?

    • The mini Projects plays a crucial role in the teaching-learning process.
    • It is also a way of identifying the ability of the student to perform an industrial project or applied research linked to the knowledge discipline.
    • A project is defined as an effort to create or modify a specific product or service.
    • Projects are temporary work efforts with a clear beginning and end.
    • mini project (or program) any undertaking, carried out individually or collaboratively and possibly involving research or design, that is carefully planned (usually by a project team) to achieve a particular aim.

WHAT ARE THE BENEFITS GAINED BY DOING MINI PROJECT :

    • mini projects if done well can add a lot of credibility to your profile.
    • And especially your mini projects building experience can help you perform well in core job placements & higher studies admission interviews.

TIPS TO SELECT GOOD MINI PROJECTS:

    • Analyze the current trends
    • Focus your mini projects on any social issue
    • Get expert’s assistance whenever possible
    • Research about the mini projects done by your seniors
    • Refer the research journals published by scholars
    • Check the feasibility of your mini projects
    • Work with organizations like Kaashiv InfoTech

WHY, ENGINEERING STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

    • mini projects for engineering students provides a real time exposure for the mini projects for engineering students on the latest and trending technologies. Below are some of the Top jobs in the IT Industry Job Openings ,
    • Software Developers – Good in Python, Machine Learning, Data Science and AI programming
    • BlockChain Administrators
    • IOT Specialists
    • Cyber Security
    • Web Application Developer – Web Designers
    • Information Security Analyst – Security Specialist
    • Network Engineers / Analyst
KaaShiv Infotech, engineering students mini projects - programme hornes you in the above said skills / job roles from basics to Advanced.

MINI PROJECTS FOR ENGINEERING STUDENTS- PROGRAMME HIGHLIGHTS :

    • mini projects for engineering students program duration: 5days/ 10days / Or Any number of days
    • Training hours: 3hrs per day
    • Software & others tools installation Guidance
    • Hardware support
    • mini projects for engineering students Report creation / Project Report creation
    • mini projects for engineering students based 2 projects ( real time)
    • Mini project Certificate & Inplant Training Certificate & Industrial exposure certificate + (Achievement certificate for best performers)

ADVANTAGES OF OUR- MINI PROJECTS FOR ENGINEERING STUDENTS :

    • Get Real Work Experience
    • Get a Taste of Your Chosen Field
    • Start Networking
    • Helps You Choose a Speciality
    • Helps You Become More Self-Confident
    • Boosts Your CV
    • Increases Your Market Value

MINI PROJECTS FOR ENGINEERING STUDENTS - MATERIALS :

    • mini project for engineering students , includes Materials after the internship programme
    • Technological guidance and materials will be shared in entire year for the students to mold technically.
    • Our be student involves Free Projects at the end of the programme.

QUERIES OR CONTACT DETAILS :

Venkat (7667662428) and Asha (7667668009)
Email ID: kaashiv.info@gmail.com , priyanka.kaashiv@gmail.com

MINI PROJECTS FOR ENGINEERING STUDENTS- PROGRAMME DURATION :

1 months / 2 months / 3 months to 6 Months ( Any Number of Days - Based on student preferences)

WHO CAN ATTEND THIS MINI PROJECTS FOR ENGINEERING STUDENTS PROGRAMME :

Mini projects for engineering students - Programme can be attended by the students who are looking for mini projects for engineering students/ mini projects for engineering students 2nd year/mini projects for engineering students 3rd year/mini projects for engineering students 4th year.

MINI PROJECTS FOR ENGINEERING STUDENTS- PROGRAMME OUTCOME :

1. Student will be specialized in Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development , Web designing and Networking concepts (Basics to Advanced)
2. Covering 45 concepts
3. Students will be getting trained in / writing 45 Programs – Will change based on the durations of the program.
4. 2 Projects and project documents will be given at the end of the program

REFERENCE YOUTUBE URL FOR MINI PROJECTS FOR ENGINEERING STUDENTS :

Check our Internship Training sample videos at this URL –
www.youtube.com/channel

REGISTRATION LINK FOR – MINI PROJECTS ENGINEERING STUDENTS :

mini projects for engineering students - Offline - Office training
Fill our online Internship form

MINI PROJECTS FOR ENGINEERING STUDENTS – DEMO LINK :

Check out our Sample mini project for engineering students Content for the training
kaashivinfotech.com/inplant-training-in-chennai-for-cse-demo

CHECK OUR PREVIOUS TESTIMONIALS FROM STUDENTS FROM DIFFERENT COUNTRIES AND DIFFERENT STATES :

www.kaashivinfotech.com/testimonials/

CHECK OUR STUDENTS FEEDBACK ON OUR - MINI PROJECTS FOR ENGINEERING STUDENTS:

mini projects for engineering students- Feedback - inplant-training-feedback /
mini projects for engineering students - Feedback - internship-feedback

CHECK OUT THE COLLEGES ATTENDED OUR FINAL YEAR PROJECT FOR ENGINEERING STUDENTS:

internship-and-inplant-training-attendees/

CHECK OUR SOCIAL SERVICE YOUTUBE CHANNELS :

www.youtube.com/channel
Check our Social Service youtube channels

REAL TIME PROJECT :

We ranked Top 200 technological companies in Tamil Nadu, Click here to view

MORE ON OUR, MINI PROJECTS FOR ENGINEERING STUDENTS:

In our, internship on mini projects for engineering students- programme below are following different kind of programmes focused such as,
1. Mini projects for engineering students (or) paid Mini projects for engineering students,
- Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
2. Mini projects for engineering students work from home – Our company provides facility for the students to learn from home as an mini project for engineering students based on latest technological trends.
3. Mini projects for engineering students report – Reports are also provided for the Mini projects for engineering students students in our company related
4. Mini projects for engineering students jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the Mini projects for engineering students period in our company.
5. Mini projects for engineering students summer / Winter internship 2019/2020 – Summer / Winter holiday internship in mini projects will be given to the student based on the developer knowledge base.
6. Mini projects for engineering students interview questions – We provide top trending and frequently asked question for the intern students during the internship period based on software development and trending technologies.
7. Mini projects for engineering students test – Based on the students request, if you are looking for any test to validate your knowledge. we are ready to provide the same.
8. Mini projects for engineering students certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
9. Mini projects for engineering students online– Learn Mini projects for engineering students from home, our company perform internship through online too.
10. Mini projects for engineering students ppt / projects report – We provide Mini projects for engineering students based ppts. projects and project reports as materials after the internship in our company.
11. Free Mini projects for engineering students- Our company will provide Mini projects for engineering students the best students of kaashiv infotech.
12. Project For Diploma mini projects for engineering students – We offer project for the diploma mini project for engineering students students in our company.
13. Mini project for engineering students 2nd Year – Our company offers you mini projects for engineering students the above students.


MORE PROJECTS