File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
DigitalLearningSolutions.Web/Services Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ namespace DigitalLearningSolutions.Web.Services
1111 using DigitalLearningSolutions . Data . Models ;
1212 using DigitalLearningSolutions . Data . Models . User ;
1313 using DigitalLearningSolutions . Data . Utilities ;
14+ using DocumentFormat . OpenXml . Office2010 . Excel ;
1415 using Microsoft . Extensions . Configuration ;
1516 using Microsoft . Extensions . Logging ;
1617 using ConfigurationExtensions = DigitalLearningSolutions . Data . Extensions . ConfigurationExtensions ;
@@ -156,6 +157,8 @@ void SetCentreEmail(
156157 List < AdminUser > GetAdminUsersByCentreId ( int centreId ) ;
157158
158159 AdminUser ? GetAdminUserById ( int id ) ;
160+ string GetUserDisplayName ( int userId ) ;
161+
159162 }
160163
161164 public class UserService : IUserService
@@ -835,5 +838,10 @@ public List<AdminUser> GetAdminUsersByCentreId(int centreId)
835838 return userDataService . GetAdminUserById ( id ) ;
836839
837840 }
841+
842+ public string GetUserDisplayName ( int userId )
843+ {
844+ return userDataService . GetUserDisplayName ( userId ) ;
845+ }
838846 }
839847}
You can’t perform that action at this time.
0 commit comments