This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.4.18 <= 0.6.12; | |
contract TrainTickets{ | |
string _from; | |
string _to; | |
string travel_date; | |
string class; | |
string customerName; | |
int phone; | |
int amt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.4.18 <= 0.6.12; | |
contract CarInsurance{ | |
string city; | |
string rto; | |
string company; | |
string model; | |
string customerName; | |
int phone; | |
string type_of_insurance; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.4.18 <= 0.6.12; | |
contract ElectricityBills{ | |
string Name; | |
string addrs; | |
string consumerId; | |
int units; | |
int amount; | |
function ElectricityBills(string newName, string newAddrs, string newconsumerId, int newunits, int newamt) public{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.4.18 <= 0.6.12; | |
contract RestarauntBill{ | |
string customerName; | |
string itemName; | |
int rate; | |
int total; | |
int quantity; | |
string date; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.4.18 <= 0.6.12; | |
contract MedicineData{ | |
string customerName; | |
string medicineName; | |
string medicineCompany; | |
int medicineCost; | |
int quantity; | |