123456789101112131415161718192021222324252627282930313233343536 |
- using Luticate2.Auth.DataAccess.Models;
- using Luticate2.Auth.Dbo.Groups;
- using Luticate2.Utils.DataAccess;
-
- namespace Luticate2.Auth.DataAccess
- {
- public class LuGroupsDataAccess //: LuEfCrudDataAccess<lu_groups, LuGroupsAddDbo, LuGroupsDbo, LuDatabaseContext>
- {
- // public LuGroupsDataAccess(LuDatabaseContext db)
- // : base(db, db.lu_groups)
- // {
- // }
-
- public string Get()
- {
- return "groups";
- }
-
- // protected override lu_groups GetModelFromTCreate(LuGroupsAddDbo obj)
- // {
- // return new lu_groups
- // {
- // name = obj.Name
- // };
- // }
- //
- // protected override LuGroupsDbo GetDboFromModel(lu_groups model)
- // {
- // return new LuGroupsDbo
- // {
- // Id = model.id.ToString(),
- // Name = model.name
- // };
- // }
- }
- }
|