using Complex.Common.Dto; using Complex.Domain.Entities; namespace Complex.Application.AppCommon { public interface IAppCommonService { ResultDto GetPoster(); } public class AppCommonService : IAppCommonService { public ResultDto GetPoster() { return new ResultDto { Data = new Poster { ImagePath = "banner.png" }, IsSuccess = true }; } } }