using Luticate2.Auth.Dbo.Groups; using Luticate2.Utils.Utils; namespace Luticate2.Auth.DataAccess.Models { public static class ModelsToDbo { public static LuGroupsDbo ToDbo(this lu_groups model) { if (model == null) { return null; } return new LuGroupsDbo { Id = model.id.ToDbo(), Name = model.name }; } } }