/// <summary> /// Returns true if the deletion of an account is successful in the db /// </summary> /// <param name="fetchAccountInfo"></param> /// <param name="accNum"></param> /// <param name="hasFixedDeposite"></param> /// <returns></returns> public static bool DeleteAccount(this IFetchAccountInfo fetchAccountInfo, int accNum, bool hasFixedDeposite) { return(_sQLiteCore.DeleteAccount(accNum, hasFixedDeposite)); }