| 12345678910111213141516171819202122232425262728293031323334 |
- // ======================================
- // Author: Ebenezer Monney
- // Email: info@ebenmonney.com
- // Copyright (c) 2017 www.ebenmonney.com
- //
- // ==> Gun4Hire: contact@ebenmonney.com
- // ======================================
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using DAL.Repositories;
- using DAL.Repositories.Interfaces;
- namespace DAL
- {
- public class UnitOfWork : IUnitOfWork
- {
- readonly ApplicationDbContext _context;
- public UnitOfWork(ApplicationDbContext context )
- {
- _context = context;
- }
- public int SaveChanges()
- {
- return _context.SaveChanges();
- }
- }
- }
|