using ERP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ERP.Dal.Interface { public interface ICompanyService { Result GetCompany(); Result SaveCompany(Company p_Company, Guid p_UserId); Result LicenseKeyActivate(Guid P_CompanyId); Result GetGlobalSetting(); Result SaveGlobalSetting(string p_Value, int p_Id); } }