using System.Collections.Generic; using _0_Framework.Application; namespace AccountManagement.Application.Contracts.TaskSubject; public interface ITaskSubjectApplication { OperationResult Create(string subject); OperationResult Edit(TaskSubjectViewModel command); OperationResult Delete(long id); List GetAll(string search); }