Advertisement
SenpaiZero

FullTimeEmployee

Feb 25th, 2024
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package asd;
  2.  
  3. public class FullTimeEmployee{
  4.     private double monthlySalary;
  5.    
  6.     // Setter for full time salary employee
  7.     public void setMonthlySalary(double monthlySalary)
  8.     {
  9.         this.monthlySalary = monthlySalary;
  10.     }
  11.  
  12.     // Getter for full time salary employee
  13.     public double getMonthlySalary()
  14.     {
  15.         return monthlySalary;
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement