MH: Dienstplaner mit Funktionen erweitert

This commit is contained in:
Marcel Hirschle
2021-03-09 15:23:06 +01:00
parent 2395e9b602
commit 165e59ae16
24 changed files with 825 additions and 101 deletions

View File

@@ -873,6 +873,15 @@ namespace BeWo.Service.ServiceContracts
[OperationContract]
List<DienstInfoDC> GetAllDienste();
[FaultContract(typeof(BeWoFault))]
[OperationContract]
string GetBemerkungForDienstEintrag(long empId, long wohnId, int zeile, DateTime date);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
DienstEintragDC GetDienstEintrag(long empId, long wohnId, int zeile, DateTime date);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
void InsertNewDienst(List<DienstInfoDC> dienst);
@@ -937,10 +946,18 @@ namespace BeWo.Service.ServiceContracts
[OperationContract]
List<DienstBlockDC> GetDienstEintraege(long wOid, int year, int month);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
List<DienstBlockDC> GetDienstvertretungen(long wOid, int year, int month);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
void InsertNewDienstEintrag(DienstEintragDC dienstEintrag);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
void InsertNewDienstvertretung(DienstvertretungDC dienstvertretung);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
void UpdateDienstEintrag(DienstEintragDC dienstEintrag);