using Manarah.App.Data; namespace Manarah.App.Services { public class BaseService { private protected readonly ManarahContext _context; public BaseService(ManarahContext context) { _context = context; } } }