using CAPI.Custom.Data; using CAPI.Custom.Domain; using CAPI.Custom.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AutoMapper; namespace CAPI.Custom.Services { public class SetupService { private readonly QuotesContext db = new QuotesContext(); public SetupModel GetCustomerSetup() { return Mapper.Map(db.Setup, new SetupModel()); } #region Purchase Orders #endregion } }