public bool Delete(string path, string id) { if (!File.Exists(path)) { Console.WriteLine("Database does not exists!"); } return(dataBase.Delete(path, id)); }
public bool Delete(int id) { return(_dataManagement.Delete(DataType.Customer, id)); }