using EnVisage.Models; using System; using System.Collections.Generic; namespace EnVisage.Code.BLL { public interface IMixManager { void Delete(string mixId); TDbClass SaveWithChildren(MixSaveModel model); MixSaveModel RetrieveModel(string mixId); MixSaveModel RetrieveWithChildren(string mixId); List GetProjectModel(List projects); void ActivateMix(string mixId); Dictionary GetFullAllocationInfoByScenario(string mixId, Guid scenarioId); } }