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