User settings

This commit is contained in:
Paul Schneider 2025-02-24 23:29:48 +00:00
commit b9ba97f5e8
16 changed files with 75 additions and 66 deletions

View file

@ -28,20 +28,13 @@ namespace Yavsc.Services
/// <returns>La facture</returns>
Task<IDecidableQuery> GetBillAsync(string billingCode, long queryId);
/// <summary>
/// All performer setting in this activity
/// </summary>
/// <param name="activityCode"></param>
/// <returns></returns>
Task<IEnumerable<ISpecializationSettings>> GetPerformersSettingsAsync(string activityCode);
/// <summary>
/// Perfomer settings for the specified performer in the activity
/// </summary>
/// <param name="activityCode">activityCode</param>
/// <param name="userId">performer uid</param>
/// <returns></returns>
Task<ISpecializationSettings> GetPerformerSettingsAsync(string activityCode, string userId);
Task<IUserSettings> GetPerformersSettingsAsync(string activityCode, string userId);
}
}