Skip to content

A Python class that can manage and merge payment requests from different classes of employees from different departments in a company

Notifications You must be signed in to change notification settings

charlesumesi/CompanyStaffAndPay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CompanyStaffAndPay

A Python class that can manage and merge payment requests from different classes of employees from different departments in a company

from abc import ABC, abstractmethod
import pandas as pd

pd.set_option('display.max_columns', None)
pd.options.mode.chained_assignment = None  # default='warn'
# You may want to enable (i.e., hashtag) chained_assignment until you are more confident with your data 


class Company:
    
    '''A class that accepts and merges payment requirements from numerous departments into a single document for a company'''
    
    #Initiating the classes managed by Company
    def __init__(self):
        self.employee = self.Employee()
        self.hourlyemployee = self.HourlyEmployee()
        self.salariedemployee = self.SalariedEmployee()
        ...

About

A Python class that can manage and merge payment requests from different classes of employees from different departments in a company

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages