1

我是企业架构的新手,但是当我正确理解时,它由 3 层组成。我在.net平台上从事学校项目,我有这样的结构:

  • 数据层 - 具有映射到关系数据库的数据模型的类库
  • 业务层 - 类库,其中我有一些提供应用程序功能的类
  • 表示层 - 我想在这一层我可以 mvc 项目,但我不确定。

当我有这个结构时,我可以在哪里存储一些 WEB API 或 WCF?可以在业务层吗?或者你能告诉我,我在哪里找到了带有 service 和 mvc 的 EA 的真实例子?谢谢

4

1 回答 1

4

你实际上有四层:

  • 介绍
  • 服务层
  • 领域层
  • 数据层

命名约定可能有点不同,但想法是分离主体的。允许服务层执行业务逻辑,但不知道数据层的方法调用的想法。

所以你会参考:

  • 演示 - (对服务、域、数据的引用)
  • 服务层 - (参考域,数据)
  • 域层 - (无参考)
  • 数据层 -(参考域)

因此,您的表示层将引用所有内容,因此当您构建依赖注入容器时,您可以正确引用整个内容。

您可以将此项目视为示例。之间如何交互。

介绍:

using Microsoft.AspNetCore.Mvc;
using Service_Layer;

namespace Address_Book.Controllers
{
    [Route("api/[controller]")]
    public class PeopleController : Controller
    {
        #region Dependencies:

        private readonly IPeopleService peopleService;

        #endregion

        #region Constructor:

        public PeopleController(IPeopleService peopleService)
        {
            this.peopleService = peopleService;
        }

        #endregion

        [HttpGet]
        public JsonResult Get()
        {
            var branches = peopleService.GetBranches();
            return Json(branches);
        }

        [HttpGet("{id}")]
        public JsonResult Get(int id)
        {
            var people = peopleService.GetEmployees(id);
            return Json(people);
        }
    }
}

服务层:

using Data_Layer.Factory;
using Domain_Layer.Entity;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;

namespace Service_Layer
{
    public class PeopleService : IPeopleService
    {
        private readonly IEmployeeFactory factory;

        private const string getBranches = "...";
        private const string getPeople = "..."
        #region Constructor:

        public PeopleService(IEmployeeFactory factory)
        {
            this.factory = factory;
        }

        #endregion

        public IEnumerable<BranchModel> GetBranches()
        {
            using (var context = factory.Create())
                return context.List<BranchModel>(getBranches, CommandType.Text);
        }

        public IEnumerable<EmployeeModel> GetEmployees(int branchId)
        {
            using (var context = factory.Create())
                return context.List<EmployeeModel>(getPeople, CommandType.Text, new SqlParameter() { ParameterName = "BranchNum", SqlDbType = SqlDbType.Int, Value = branchId });
        }
    }

    #region Declaration of Intent:

    public interface IPeopleService
    {
        IEnumerable<BranchModel> GetBranches();

        IEnumerable<EmployeeModel> GetEmployees(int branchId);
    }

    #endregion
}

数据层:

using Data_Layer.Repository;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using Data_Layer.Helper;

namespace Data_Layer.Context
{
    public class EmployeeContext : DbCommand, IEmployeeRepository
    {
        private bool disposed = false;
        private string dbConnection;

        #region Constructor:

        public EmployeeContext(string dbConnection)
        {
            this.dbConnection = dbConnection;
        }

        #endregion

        public IEnumerable<TEntity> List<TEntity>(string query, CommandType commandType, params SqlParameter[] parameters) where TEntity : class, new()
        {
            using (var connection = new SqlConnection(dbConnection))
            using (var command = new SqlCommand(query, connection))
            {
                connection.Open();
                command.CommandType = commandType;

                foreach (var parameter in parameters)
                    command.Parameters.Add(parameter);

                return BuildEntity(command, new TEntity());
            }
        }

        #region Dispose:

        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(true);
        }

        protected virtual void Dispose(bool disposing)
        {
            if (!disposed)
                disposed = true;
        }

        ~EmployeeContext() { Dispose(false); }

        #endregion
    }
}

您需要查看项目,数据层和服务层是通过依赖注入调用的,我为Startup.cs文件创建了一个扩展方法,但这就是它们交互的方式。如果您有任何问题,请随时提出,我每天都在 C# 聊天中。

于 2016-11-09T23:53:39.617 回答