using Microsoft.AspNetCore.Mvc; using WIDESEA_Common; using WIDESEA_DTO; namespace WIDESEA_IStorageBasicService; public interface ILocationInfoService : IService { Task initializeLocation(int locationID); WebResponseContent CreateLocation(int x, int y, int z, int locType, int areaId); WebResponseContent LocationEnable(SaveModel saveModel); object GetLocationStatu(Area area); }