using Centron.BusinessLogic; using Centron.BusinessLogic.EmployeeArea; using Centron.Data.Entities.Administration.Logins; namespace Centron.Tests.EndToEnd.Tests { public static class CommonMethodsHelper { public static LoggedInUser GetUser(BLSession session, int userI3D = 11) => new LoggedInUser(session.GetBL().GetAppUser(f => f.I3D == userI3D)); } }