Files
T-DAS/Epost.TestToolsWeb.Tests/Controllers/HomeControllerTest.cs

32 lines
795 B
C#
Raw Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Epost.TestToolsWeb;
using Epost.Model;
using Epost.Common;
using System.Configuration;
using Epost.BLL;
using System.Data;
using Epost.DAL.Cache;
using static Epost.Common.LogHelper;
namespace Epost.TestToolsWeb.Tests.Controllers
{
[TestClass]
public class HomeControllerTest
{
OrderBLL bll = new OrderBLL();
WmsTaskBLL wmsbll = new WmsTaskBLL();
AddressstorageBLL addrBLL = new AddressstorageBLL();
CommandBLL combll = new CommandBLL();
ScanModelCacheDAL scanCacheDAL = new ScanModelCacheDAL();
JobModelCacheDAL JobCache = new JobModelCacheDAL();
}
}