using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Core;
|
using WIDESEAWCS_Core.BaseServices;
|
using WIDESEAWCS_DTO.Basic;
|
using WIDESEAWCS_IBasicRepository;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_IBasicService
|
{
|
public interface ILocationInfoService : IService<Dt_LocationInfo>
|
{
|
ILocationInfoRepository Repository { get; }
|
|
WebResponseContent InitializationLocation(InitializationLocationDTO initializationLocationDTO);
|
|
WebResponseContent LocationEnableStatus(int[] keys);
|
|
WebResponseContent LocationDisableStatus(int[] keys);
|
|
WebResponseContent LocationEnableStatus(int key);
|
|
WebResponseContent LocationDisableStatus(int key);
|
|
WebResponseContent GetLocationStatusDic();
|
|
WebResponseContent UpdateLocationStatus(int key, int locationStatus);
|
}
|
}
|