Skip to content

Commit

Permalink
completed project
Browse files Browse the repository at this point in the history
  • Loading branch information
spvhantale authored Oct 2, 2022
1 parent afea5b2 commit ce310c1
Show file tree
Hide file tree
Showing 72 changed files with 2,396 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
87 changes: 87 additions & 0 deletions muddled-can-9800/muddled-can-9800/src/com/swapnil/bean/Admin.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
package com.swapnil.bean;

public class Admin {

private int aid;
private String aname;
private String amail;
private String amobile;
private String apassword;


public Admin() {
super();
}


public Admin(int aid, String aname, String amail, String amobile, String apassword) {
super();
this.aid = aid;
this.aname = aname;
this.amail = amail;
this.amobile = amobile;
this.apassword = apassword;
}


public int getAid() {
return aid;
}


public void setAid(int aid) {
this.aid = aid;
}


public String getAname() {
return aname;
}


public void setAname(String aname) {
this.aname = aname;
}


public String getAmail() {
return amail;
}


public void setAmail(String amail) {
this.amail = amail;
}


public String getAmobile() {
return amobile;
}


public void setAmobile(String amobile) {
this.amobile = amobile;
}


public String getApassword() {
return apassword;
}


public void setApassword(String apassword) {
this.apassword = apassword;
}


@Override
public String toString() {
return "Admin [aid=" + aid + ", aname=" + aname + ", amail=" + amail + ", amobile=" + amobile + ", apassword="
+ apassword + "]";
}





}
73 changes: 73 additions & 0 deletions muddled-can-9800/muddled-can-9800/src/com/swapnil/bean/Buyer.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
package com.swapnil.bean;

public class Buyer {


private int bid;
private String bname;
private String bmail;
private String bmobile;
private String bpassword;

public Buyer() {
super();
}

public Buyer(int bid, String bname, String bmail, String bmobile, String bpassword) {
super();
this.bid = bid;
this.bname = bname;
this.bmail = bmail;
this.bmobile = bmobile;
this.bpassword = bpassword;
}

public int getBid() {
return bid;
}

public void setBid(int bid) {
this.bid = bid;
}

public String getBname() {
return bname;
}

public void setBname(String bname) {
this.bname = bname;
}

public String getBmail() {
return bmail;
}

public void setBmail(String bmail) {
this.bmail = bmail;
}

public String getBmobile() {
return bmobile;
}

public void setBmobile(String bmobile) {
this.bmobile = bmobile;
}

public String getBpassword() {
return bpassword;
}

public void setBpassword(String bpassword) {
this.bpassword = bpassword;
}

@Override
public String toString() {
return "Buyer [bid=" + bid + ", bname=" + bname + ", bmail=" + bmail + ", bmobile=" + bmobile + ", bpassword="
+ bpassword + "]";
}



}
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
package com.swapnil.bean;

import java.sql.Date;

public class BuyerProoduct {

private int bpno;
private int bid;
private int spno;
private int minprice;
private Date buydate;
private String bpcategory;



public int getBpno() {
return bpno;
}



public void setBpno(int bpno) {
this.bpno = bpno;
}



public int getBid() {
return bid;
}



public void setBid(int bid) {
this.bid = bid;
}



public int getSpno() {
return spno;
}



public void setSpno(int spno) {
this.spno = spno;
}



public int getMinprice() {
return minprice;
}



public void setMinprice(int minprice) {
this.minprice = minprice;
}



public Date getBuydate() {
return buydate;
}



public void setBuydate(Date buydate) {
this.buydate = buydate;
}



public String getBpcategory() {
return bpcategory;
}



public void setBpcategory(String bpcategory) {
this.bpcategory = bpcategory;
}



public BuyerProoduct() {
super();
}



public BuyerProoduct(int bpno, int bid, int spno, int minprice, Date buydate, String bpcategory) {
super();
this.bpno = bpno;
this.bid = bid;
this.spno = spno;
this.minprice = minprice;
this.buydate = buydate;
this.bpcategory = bpcategory;
}



@Override
public String toString() {
return "BuyerProoduct [bpno=" + bpno + ", bid=" + bid + ", spno=" + spno + ", minprice=" + minprice
+ ", buydate=" + buydate + ", bpcategory=" + bpcategory + "]";
}




}
Loading

0 comments on commit ce310c1

Please sign in to comment.