using Cloud_Manager.Models.POSModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cloud_Manager.Models.Interfaces { public interface IUser { IEnumerable FetchUsers(); Task> GetUsers(); Task SyncUserAsync(List a_users); } }