BaseServices.cs

22 lines | 340 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Model.UnitsOfWork;

namespace BLL.Base
{
    public abstract class BaseServices
    {
        public readonly UOW UOW;

        public BaseServices(UOW UOW)
        {
            this.UOW = UOW;
        }

    }
}