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 CreateLocation(string AreaName, int x, int y, int areaId, string Floor); }