Initial commit

This commit is contained in:
oqtane
2019-05-04 20:32:08 -04:00
committed by Shaun Walker
parent 2f232eea7e
commit d71de1c21f
177 changed files with 8536 additions and 0 deletions

View File

@ -0,0 +1,82 @@
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using Oqtane.Models;
namespace Oqtane.Repository
{
public class UserRepository : IUserRepository
{
private TenantContext db;
public UserRepository(TenantContext context)
{
db = context;
}
public IEnumerable<User> GetUsers()
{
try
{
return db.User.ToList();
}
catch
{
throw;
}
}
public void AddUser(User user)
{
try
{
db.User.Add(user);
db.SaveChanges();
}
catch
{
throw;
}
}
public void UpdateUser(User user)
{
try
{
db.Entry(user).State = EntityState.Modified;
db.SaveChanges();
}
catch
{
throw;
}
}
public User GetUser(int userId)
{
try
{
User user = db.User.Find(userId);
return user;
}
catch
{
throw;
}
}
public void DeleteUser(int userId)
{
try
{
User user = db.User.Find(userId);
db.User.Remove(user);
db.SaveChanges();
}
catch
{
throw;
}
}
}
}