You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
425 B
20 lines
425 B
3 months ago
|
using BiskLog_Point_Of_Sale;
|
||
|
using BiskLog_Point_Of_Sale.Properties;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Point_Of_Sale_Managment
|
||
|
{
|
||
|
class DatabaseConn
|
||
|
{
|
||
|
public string MyConnection()
|
||
|
{
|
||
|
string con = passwordEncryption.Decrypt(Settings.Default.Connection);
|
||
|
return con;
|
||
|
}
|
||
|
}
|
||
|
}
|