32 lines
795 B
C#
32 lines
795 B
C#
![]() |
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();
|
|||
|
|
|||
|
}
|
|||
|
}
|