Skip to content

Commit f29d237

Browse files
author
CIS Guru
committed
See REVISIONS.md for details
1 parent 6f12dc8 commit f29d237

16 files changed

Lines changed: 8566 additions & 3 deletions

Aquiis.SimpleStart.Tests/DocumentServiceTests.cs

Lines changed: 834 additions & 0 deletions
Large diffs are not rendered by default.

Aquiis.SimpleStart.Tests/InvoiceServiceTests.cs

Lines changed: 1009 additions & 0 deletions
Large diffs are not rendered by default.

Aquiis.SimpleStart.Tests/LeaseServiceTests.cs

Lines changed: 933 additions & 0 deletions
Large diffs are not rendered by default.

Aquiis.SimpleStart.Tests/MaintenanceServiceTests.cs

Lines changed: 1216 additions & 0 deletions
Large diffs are not rendered by default.

Aquiis.SimpleStart.Tests/PaymentServiceTests.cs

Lines changed: 983 additions & 0 deletions
Large diffs are not rendered by default.

Aquiis.SimpleStart.Tests/TenantServiceTests.cs

Lines changed: 865 additions & 0 deletions
Large diffs are not rendered by default.

Aquiis.SimpleStart/Application/Services/CalendarEventService.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
using Microsoft.EntityFrameworkCore;
22
using Aquiis.SimpleStart.Infrastructure.Data;
33
using Aquiis.SimpleStart.Core.Entities;
4+
using Aquiis.SimpleStart.Core.Interfaces;
45
using Aquiis.SimpleStart.Shared.Services;
56

67
namespace Aquiis.SimpleStart.Application.Services
78
{
89
/// <summary>
910
/// Service for managing calendar events and synchronizing with schedulable entities
1011
/// </summary>
11-
public class CalendarEventService
12+
public class CalendarEventService : ICalendarEventService
1213
{
1314
private readonly ApplicationDbContext _context;
1415
private readonly CalendarSettingsService _settingsService;

0 commit comments

Comments
 (0)