namespace Brizco.Core.EntityServices.Abstracts; public interface IBrewService : IScopedDependency { public Task GetLastBrewAsync(string recipeName, CancellationToken cancellationToken = default); public Task GetBrewAsync(string recipeName , CancellationToken cancellationToken = default); public Task AddBrewAsync(string recipeName,JsonDocument recipeObj, CancellationToken cancellationToken = default); }