package Visual_DVM_2021.Passes.All; import Common.Database.Database; import Common.Utils.CommonUtils; import GlobalData.SapforProfile.SapforProfile; import Visual_DVM_2021.Passes.DeleteObjectPass; public class DeleteProfile extends DeleteObjectPass { public DeleteProfile() { super(SapforProfile.class); } @Override protected Database getDb() { return CommonUtils.db; } }