- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.SDK.Context.Configuration;
- using TEAMModelOS.Service.Models;
- namespace TEAMModelOS.Service.Services.Interface
- {
- public interface IVolumeService : IBusinessService
- {
- public Task<List<Volume>> SaveOrUpdateVolume(Volume request);
- }
- }
|