public MainOfficeTypeHandler()
 {
     mainOfficeTypeDb = new MainOfficeTypeDBAccess();
 }
Exemplo n.º 2
0
	public List<Department> GetListDepartment()
	{
		DepartmentList = new MainOfficeTypeDBAccess().GetListDepartment(this.MainOfficeTypeID);
		return DepartmentList;
	}
Exemplo n.º 3
0
	public List<OfficialEmployeeReward> GetListOfficialEmployeeReward()
	{
		OfficialEmployeeRewardList = new MainOfficeTypeDBAccess().GetListOfficialEmployeeReward(this.MainOfficeTypeID);
		return OfficialEmployeeRewardList;
	}
Exemplo n.º 4
0
	public List<BaseMonthlyInformation> GetListBaseMonthlyInformation()
	{
		BaseMonthlyInformationList = new MainOfficeTypeDBAccess().GetListBaseMonthlyInformation(this.MainOfficeTypeID);
		return BaseMonthlyInformationList;
	}