|
|
@@ -9,8 +9,6 @@ using Comal.Classes;
|
|
|
using InABox.Core;
|
|
|
using InABox.Clients;
|
|
|
using InABox.DynamicGrid;
|
|
|
-using Microsoft.Win32;
|
|
|
-using SaveFileDialog = Microsoft.Win32.SaveFileDialog;
|
|
|
|
|
|
namespace PRSDesktop;
|
|
|
|
|
|
@@ -237,4 +235,16 @@ public class EmployeeQualificationGrid : QualificationManyToManyGrid<Employee>
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public override void SaveItem(EmployeeQualification item)
|
|
|
+ {
|
|
|
+ base.SaveItem(item);
|
|
|
+ InABox.Clients.Client.Save(item, "Updated by User");
|
|
|
+ }
|
|
|
+
|
|
|
+ public override void DeleteItems(params CoreRow[] rows)
|
|
|
+ {
|
|
|
+ base.DeleteItems(rows);
|
|
|
+ InABox.Clients.Client.Delete(rows.ToObjects<EmployeeRosterItem>(),"Deleted by User");
|
|
|
+ }
|
|
|
}
|