jhasgdjqsg

This commit is contained in:
SamSys
2024-12-07 20:43:47 +03:30
parent 14c0c0edf1
commit d12f8232fb
2 changed files with 6 additions and 1 deletions

View File

@@ -19,4 +19,7 @@ public interface ICustomizeWorkshopSettingsRepository : IRepository<long, Custom
EditCustomizeWorkshopSettings GetWorkshopSettingsDetails(long workshopId);
EditCustomizeWorkshopSettings GetSimpleWorkshopSettings(long workshopId);
List<ChangedGroupedViewModel> GetShiftChangesGroupAndEmployees(long customizeWorkshopSettingsId);
CustomizeWorkshopSettingsViewModel GetWorkshopIncludeGroupsByWorkshopId(long workshopId);
}

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
@@ -7,4 +8,5 @@ public class CustomizeWorkshopSettingsViewModel
public long Id { get; set; }
public string Name { get; set; }
public List<CustomizeWorkshopGroupSettingsViewModel> GroupSettings { get; set; }
public WorkshopShiftStatus WorkshopShiftStatus { get; set; }
}