1
22
23 package com.liferay.portal.service;
24
25
26
51 public interface OrgLaborLocalService {
52 public com.liferay.portal.model.OrgLabor addOrgLabor(
53 com.liferay.portal.model.OrgLabor orgLabor)
54 throws com.liferay.portal.SystemException;
55
56 public void deleteOrgLabor(long orgLaborId)
57 throws com.liferay.portal.SystemException,
58 com.liferay.portal.PortalException;
59
60 public void deleteOrgLabor(com.liferay.portal.model.OrgLabor orgLabor)
61 throws com.liferay.portal.SystemException,
62 com.liferay.portal.PortalException;
63
64 public java.util.List<com.liferay.portal.model.OrgLabor> dynamicQuery(
65 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
66 throws com.liferay.portal.SystemException;
67
68 public java.util.List<com.liferay.portal.model.OrgLabor> dynamicQuery(
69 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
70 int begin, int end) throws com.liferay.portal.SystemException;
71
72 public com.liferay.portal.model.OrgLabor updateOrgLabor(
73 com.liferay.portal.model.OrgLabor orgLabor)
74 throws com.liferay.portal.SystemException;
75
76 public com.liferay.portal.model.OrgLabor addOrgLabor(long organizationId,
77 int typeId, int sunOpen, int sunClose, int monOpen, int monClose,
78 int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen,
79 int thuClose, int friOpen, int friClose, int satOpen, int satClose)
80 throws com.liferay.portal.SystemException,
81 com.liferay.portal.PortalException;
82
83 public com.liferay.portal.model.OrgLabor getOrgLabor(long orgLaborId)
84 throws com.liferay.portal.SystemException,
85 com.liferay.portal.PortalException;
86
87 public java.util.List<com.liferay.portal.model.OrgLabor> getOrgLabors(
88 long organizationId) throws com.liferay.portal.SystemException;
89
90 public com.liferay.portal.model.OrgLabor updateOrgLabor(long orgLaborId,
91 int typeId, int sunOpen, int sunClose, int monOpen, int monClose,
92 int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen,
93 int thuClose, int friOpen, int friClose, int satOpen, int satClose)
94 throws com.liferay.portal.SystemException,
95 com.liferay.portal.PortalException;
96 }