Example #1
0
        public async ValueTask <ReadTypeResponse> Read(FilterRequest filter)
        {
            var response = new ReadTypeResponse();

            await response.Load(context, filter.Offset, filter.Limit);

            return(response);
        }
Example #2
0
        public async ValueTask <ReadPageResponse> Read(int chapterId, FilterRequest filter)
        {
            var response = new ReadPageResponse();

            await response.Load(context, chapterId, filter.Offset, filter.Limit);

            return(response);
        }
        public async ValueTask <ReadTranslatorsByIdResponse> ReadById(int mangaId, FilterRequest filter)
        {
            var response = new ReadTranslatorsByIdResponse();

            await response.Read(context, mangaId, filter.Offset, filter.Limit);

            return(response);
        }