Skip to content
Permalink
512a8429ba
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (14 sloc) 404 Bytes
using App3.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace App3.Services
{
public interface IDataService
{
Task AddUser(string Username, string Password);
Task<IEnumerable<User>> GetUser();
Task RemoveUser(int id);
Task AddUser(object username, object password);
Task AddUser(string username, object password);
}
}